-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.yaml
75 lines (73 loc) · 1.76 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
version: "3.9"
services:
backend:
container_name: backend
build:
context: .
dockerfile: build/Dockerfile
ports:
- "8080:8080"
volumes:
- .:/app
- ~/.aws/:/root/.aws:ro
depends_on:
db:
condition: service_healthy
redis:
condition: service_healthy
env_file:
- .env
environment:
AWS_SDK_LOAD_CONFIG: "true"
DATABASE_URL: "db:db@tcp(db:3306)/db?charset=utf8&parseTime=true"
DATASTORE_ADDRESS: "redis:6379"
TZ: Asia/Tokyo
db:
image: mysql:8.0
container_name: db
environment:
MYSQL_DATABASE: db
MYSQL_USER: db
MYSQL_PASSWORD: db
TZ: 'Asia/Tokyo'
MYSQL_ALLOW_EMPTY_PASSWORD: yes
healthcheck:
test: [ "CMD", "mysqladmin" ,"ping", "-h", "localhost" ]
timeout: 5s
retries: 10
command: mysqld --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
volumes:
- ./data/mysql/my.conf:/etc/mysql/conf.d/my.cnf
- ./data/init:/docker-entrypoint-initdb.d
ports:
- "3306:3306"
redis:
image: redis:alpine
container_name: redis
command: ["redis-server", "/usl/local/etc/redis/redis.conf"]
healthcheck:
test: [ "CMD", "redis-cli", "--raw", "incr", "ping", "|", "grep", "PONG" ]
timeout: 5s
retries: 5
start_period: 5s
volumes:
- ./data/redis/redis.conf:/usl/local/etc/redis/redis.conf
ports:
- "6379:6379"
worker:
container_name: worker
build:
context: .
dockerfile: worker/Dockerfile
volumes:
- .:/app
depends_on:
redis:
condition: service_healthy
env_file:
- .env
environment:
DATASTORE_ADDRESS: "redis:6379"
TZ: Asia/Tokyo
ports:
- "8081:8081"