-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
73 lines (71 loc) · 1.88 KB
/
docker-compose.yml
File metadata and controls
73 lines (71 loc) · 1.88 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
version: '3'
volumes:
database-data:
networks:
open-source-bazaar:
services:
postgres:
image: postgres
environment:
- POSTGRES_PASSWORD=${APP_SECRET}
volumes:
- database-data:/var/lib/postgresql/data/
networks:
- open-source-bazaar
restart: always
open-library-service:
depends_on:
- postgres
image: open-source-bazaar/open-library-service
environment:
- NODE_ENV=production
- DATABASE_URL=postgres://postgres:${APP_SECRET}@postgres:5432/postgres
- PORT=8080
networks:
- open-source-bazaar
healthcheck:
test: ['CMD-SHELL', 'curl -f http://localhost:8080/ || exit 1']
interval: 3s
retries: 5
start_period: 30s
labels:
- autoheal=true
restart: always
dashpress:
depends_on:
- postgres
- open-library-service
image: luojiyin/dashpress:1.0
volumes:
- ./dashpress/app:/app
ports:
- 8081:3000
networks:
- open-source-bazaar
healthcheck:
test: ['CMD-SHELL', 'curl -f http://localhost:3000/ || exit 1']
interval: 3s
retries: 5
start_period: 30s
labels:
- autoheal=true
restart: always
autoheal:
image: willfarrell/autoheal:1.2.0
volumes:
- /var/run/docker.sock:/var/run/docker.sock
networks:
- open-source-bazaar
restart: always
caddy:
depends_on:
- open-library-service
image: caddy
ports:
- 80:80
- 443:443
networks:
- open-source-bazaar
restart: always
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile