-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
44 lines (44 loc) · 1.27 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
version: "3"
services:
client:
container_name: client_vue
build: ./client
ports:
- "8080:8080" # ホスト側のポート:コンテナ側のポート
volumes:
- ./client:/client # srcディレクトリのみマッピング
tty: true
server:
container_name: server_go
build: ./server # ビルド時のDockerfileの位置
ports:
- "3000:3000"
volumes:
- ./server:/go/src/server # マウントするディレクトリの指定
env_file:
- ./.env
tty: true # コンテナの永続化
db:
platform: linux/x86_64 # M1Mac用にプラットフォームを指定
container_name: db
image: mysql:8.0
env_file:
- ./.env
command: mysqld --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
ports:
- "3306:3306" # コンテナの3306番をローカルの3306番にマッピング
volumes:
- ./db/sqls:/docker-entrypoint-initdb.d
- ./db/my.cnf:/etc/mysql/conf.d/my.cnf
- ./db/data:/var/lib/mysql
- ./db/logs:/var/logs/mysql
proxy-server:
container_name: nginx
image: nginx
ports:
- "8088:80"
volumes:
- ./r-proxy/nginx.conf:/etc/nginx/nginx.conf
- ./r-proxy/public:/usr/share/nginx/html
env_file:
- ./.env