forked from docusealco/docuseal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
45 lines (42 loc) · 1.11 KB
/
docker-compose.yml
File metadata and controls
45 lines (42 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
services:
app:
#depends_on:
# postgres:
# condition: service_healthy
#image: docuseal/docuseal:latest
ports:
- 3000:3000
restart: always
volumes:
- /opt/docuseal:/data/docuseal
environment:
- HOST=esign.iotinga.it
- FORCE_SSL=https://esign.iotinga.it
#- DATABASE_URL=sqlite:///docuseal/db.sqlite3
build:
dockerfile: Dockerfile
#- DATABASE_URL=postgresql://postgres:postgres@postgres:5432/docuseal
#postgres:
#image: postgres:15
#volumes:
#- './pg_data:/var/lib/postgresql/data'
#environment:
#POSTGRES_USER: postgres
#POSTGRES_PASSWORD: postgres
#POSTGRES_DB: docuseal
#healthcheck:
#test: ["CMD-SHELL", "pg_isready -U postgres"]
#interval: 5s
#timeout: 5s
#retries: 5
#caddy:
#image: caddy:latest
#command: caddy reverse-proxy --from $HOST --to app:3000
#ports:
#- 80:80
#- 443:443
#- 443:443/udp
#volumes:
#- .:/data
#environment:
#- HOST=${HOST}