-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdocker-compose.yaml
45 lines (45 loc) · 952 Bytes
/
docker-compose.yaml
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.8"
services:
mysql:
container_name: mysql
image: agray998/fund-proj-db:latest
build: ./db
volumes:
- type: volume
source: app-vol
target: /var/lib/mysql
networks:
- app-net
environment:
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}
flask-app:
container_name: flask-app
image: agray998/fund-proj-app:v2
build: ./flask-app
networks:
- app-net
environment:
DATABASE_URI: ${DATABASE_URI}
SECRET_KEY: ${SECRET_KEY}
depends_on:
- mysql
nginx:
container_name: nginx
image: nginx:latest
networks:
- app-net
ports:
- target: 80
published: 80
protocol: tcp
volumes:
- type: bind
source: ./nginx.conf
target: /etc/nginx/nginx.conf
depends_on:
- flask-app
volumes:
app-vol:
networks:
app-net:
# driver: overlay (uncomment when deploying via docker stack)