-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose.yaml
93 lines (87 loc) · 1.71 KB
/
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
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
services:
# Go
backend:
build:
context: backend
target: builder
secrets:
- db-password
networks:
- public
- private
depends_on:
db:
condition: service_healthy
restart: always
# MySQL
db:
image: mysql:8
command: "--default-authentication-plugin=mysql_native_password --general-log=1 --general-log-file=/var/log/mysql/mysql.log"
healthcheck:
test:
[
"CMD-SHELL",
'mysqladmin ping -h 127.0.0.1 --password="$$(cat /run/secrets/db-password)" --silent',
]
interval: 3s
retries: 5
start_period: 30s
secrets:
- db-password
networks:
- private
volumes:
- db-data:/var/lib/mysql
- /var/log/mysql:/var/log/mysql
environment:
- MYSQL_DATABASE=example
- MYSQL_ROOT_PASSWORD_FILE=/run/secrets/db-password
expose:
- 3306
ports:
- 3306:3306
restart: always
# React
frontend:
build:
context: frontend
expose:
- 3000
volumes:
- ./frontend/src:/code/src
- /code/node_modules
networks:
- public
env_file:
- path: ./frontend/.env.local
required: true
depends_on:
- backend
restart: always
# Nginx
proxy:
image: nginx
volumes:
- type: bind
source: ./proxy/nginx.conf
target: /etc/nginx/conf.d/default.conf
read_only: true
- /var/log/nginx:/var/log/nginx
networks:
- public
ports:
- 80:80
- 8080:8080
- 3000:80
depends_on:
- backend
- frontend
restart: always
networks:
public:
private:
volumes:
db-data:
secrets:
db-password:
file: db/password.txt