-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathdocker-compose-persistent.yml
More file actions
41 lines (36 loc) · 992 Bytes
/
docker-compose-persistent.yml
File metadata and controls
41 lines (36 loc) · 992 Bytes
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
# this file is used during the deployment process
version: '3.7'
services:
gmw_db:
volumes:
- /home/github_gitmostwanted/data/mysql:/var/lib/mysql
networks:
- gmw_network
gmw_redis:
entrypoint: ["redis-server", "--appendonly", "yes"]
volumes:
- /home/github_gitmostwanted/data/redis:/data
networks:
- gmw_network
gmw_celery:
volumes:
- /home/github_gitmostwanted/data/celery:/data
- /home/github_gitmostwanted/gitmostwanted:/etc/gitmostwanted
environment:
- GMW_APP_ENV=production
- GMW_APP_SETTINGS=/etc/gitmostwanted/instance.cfg
networks:
- gmw_network
gmw_web:
volumes:
- /home/github_gitmostwanted/gitmostwanted:/etc/gitmostwanted
environment:
- GMW_APP_ENV=production
- GMW_APP_SETTINGS=/etc/gitmostwanted/instance.cfg
- GMW_GITHUB_SHA=${GMW_GITHUB_SHA}
networks:
- gmw_network
networks:
gmw_network:
external:
name: traefik_default