-
Notifications
You must be signed in to change notification settings - Fork 0
/
stack-example.yml
76 lines (72 loc) · 1.51 KB
/
stack-example.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
72
73
74
75
76
version: "3.8"
volumes:
pg_data:
odoo_data:
services:
db:
image: postgres:alpine
env_file:
- $PWD/db/.env
environment:
- PGDATA=/var/lib/postgresql/data/pgdata
volumes:
- pg_data:/var/lib/postgresql/data/pgdata
deploy:
replicas: 1
restart_policy:
condition: any
resources:
limits:
memory: '200mb'
restart: always
aeroo:
image: adhoc/aeroo-docs
deploy:
replicas: 1
restart_policy:
condition: any
resources:
limits:
memory: '20mb'
restart: always
odoo:
image: senzil/odoo:13.0
env_file:
- $PWD/odoo/.env
volumes:
- odoo_data:/home/odoo/data
deploy:
replicas: 1
restart_policy:
condition: any
resources:
limits:
memory: '256mb'
restart: always
depends_on:
- aeroo
- db
proxy:
image: nginx:alpine
volumes:
- $PWD/proxy/nginx.conf:/etc/nginx/nginx.conf:ro
- $PWD/proxy/certs/domain.crt:/etc/nginx/ssl/domain.com/domain.crt:ro
- $PWD/proxy/certs/domain.key:/etc/nginx/ssl/domain.com/domain.key:ro
- $PWD/proxy/certs/domain.pem:/etc/nginx/ssl/domain.com/domain.pem:ro
ports:
- 80:80
- 443:443
deploy:
replicas: 1
placement:
max_replicas_per_node: 1
restart_policy:
condition: any
resources:
limits:
memory: 20M
restart: always
depends_on:
- aeroo
- db
- odoo