-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
71 lines (69 loc) · 1.74 KB
/
docker-compose.yml
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
version: '3'
volumes:
database-data:
networks:
idea2app:
services:
postgres:
image: postgres
environment:
- POSTGRES_PASSWORD=${APP_SECRET}
volumes:
- database-data:/var/lib/postgresql/data/
networks:
- idea2app
restart: always
rest-node-ts:
depends_on:
- postgres
image: idea2app/rest-node-ts
environment:
- NODE_ENV=production
- DATABASE_URL=postgres://postgres:${APP_SECRET}@postgres:5432/postgres
- PORT=8080
networks:
- idea2app
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
- rest-node-ts
image: luojiyin/dashpress:1.0
volumes:
- ./dashpress/app:/app
ports:
- 8081:3000
networks:
- idea2app
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
restart: always
caddy:
depends_on:
- rest-node-ts
image: caddy
ports:
- 80:80
- 443:443
networks:
- idea2app
restart: always
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile