-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
executable file
·107 lines (100 loc) · 2.5 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
version: "3"
services:
backend-api:
build: ./backEnd
restart: always
env_file:
- ./env/backEndCredentials.env
depends_on:
- db
volumes:
- ./credentials:/app/credentials
ports:
- "3002:3002"
networks:
- backend-network
- proxy
db:
image: mysql:latest
restart: always
env_file:
- ./env/MYSQLcredentials.env
ports:
- "3306:3306"
#DB data will be persisted in this volume
volumes:
- sql-datavolume:/var/lib/mysql
#Build new db based on the init.sql file
#- ./db:/docker-entrypoint-initdb.d/
#Restoring DB data from backup
- ./db/backups/backup_2020-05-26T04-30-00Z.sql:/docker-entrypoint-initdb.d/dump.sql
networks:
- backend-network
db-backup:
image: databack/mysql-backup
user: "0"
restart: always
depends_on:
- db
volumes:
- ./db/backups:/db
env_file:
- ./env/MYSQLcredentials.env
networks:
- backend-network
php-admin:
image: phpmyadmin/phpmyadmin
restart: always
env_file:
- ./env/phpAdminVariables.env
depends_on:
- db
ports:
- "3008:80"
networks:
- backend-network
- proxy
frontend-nodejs:
build: ./frontEnd
restart: always
env_file:
- ./env/NODEvariables.env
ports:
- "3006:3006"
networks:
- proxy
frontend-server:
image: nginx:mainline-alpine
restart: always
ports:
- "80:80"
volumes:
- ./frontEnd/nginx-conf:/etc/nginx/conf.d
depends_on:
- frontend-nodejs
- backend-api
- php-admin
networks:
- proxy
bot-db:
image: postgres:12.0-alpine
env_file:
- ./env/BOTvariables.env
expose:
- "5432"
web:
image: mneiding/mango_uk_bot:latest
command: gunicorn mango_uk_bot.wsgi:application --bind 0.0.0.0:8000
ports:
- 80:8000
env_file:
- ./env/BOTvariables.env
links:
- bot-db:bot-db
volumes:
sql-datavolume:
networks:
backend-network:
driver: bridge
proxy:
driver: bridge