forked from lahmacunradio/arcsi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
45 lines (44 loc) · 1.01 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
---
version: "3"
services:
nginx:
build: ./nginx
restart: always
ports:
- "80:80"
- "443:443"
volumes:
- ./nginx/arcsi.conf:/etc/nginx/conf.d/arcsi.conf
- /etc/letsencrypt:/etc/letsencrypt
depends_on:
- web
env_file:
- srv.env
entrypoint: sh -c '/entrypoint.sh $$DOMAIN $$EMAIL'
web:
links:
- "db"
build: .
image: arcsi:0.2
restart: always
expose:
- 5666
volumes:
- .:/app
depends_on:
- db
env_file:
- app.env
# there is no `depend_on: condition:` in compose service v3
entrypoint: sh -c 'sleep 60; /app/entrypoint.sh'
db:
image: postgres:10
restart: always
volumes:
- ./pg-data/postgres:/var/lib/postgresql/data
ports:
- "5432:5432"
expose:
- 5432
env_file:
- db.env