forked from open-eats/OpenEats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-prod.yml
48 lines (48 loc) · 1.04 KB
/
docker-prod.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
version: '2.3'
services:
api:
image: intrinsicaly/openeats-api
command: /startup/prod-entrypoint.sh
restart: on-failure
volumes:
- static-files:/code/static-files
- site-media:/code/site-media
depends_on:
db:
condition: service_healthy
env_file:
env_prod.list
web:
image: openeats/openeats-web
command: yarn start
depends_on:
- api
volumes:
- public-ui:/code/build
env_file:
env_prod.list
db:
image: mariadb:5.5.64
healthcheck:
test: ["CMD", "mysqladmin" ,"ping", "-h", "localhost"]
timeout: 20s
retries: 20
env_file:
env_prod.list
nginx:
image: openeats/openeats-nginx
command: ./start.sh
volumes:
- static-files:/var/www/html/openeats-static/static-files
- site-media:/var/www/html/openeats-static/site-media
- public-ui:/var/www/html/openeats-static/public-ui
depends_on:
- api
- web
env_file:
env_prod.list
volumes:
database:
public-ui:
static-files:
site-media: