-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yml
72 lines (68 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
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
version: "3.9"
services:
server_prod:
profiles:
- prod
build:
context: .
target: prod
args:
MIX_ENV: prod
ports:
- "80:80"
- "443:443"
depends_on:
- db
server_release:
profiles:
- release
build:
context: .
target: release
args:
MIX_ENV: prod
server_dev:
profiles:
- dev
build:
context: .
target: dev
args:
MIX_ENV: dev
environment:
- RUST_BACKTRACE=full
ports:
- "80:80"
volumes:
- ./_cache/_build/:/app/_build/:rw
- ./_cache/deps/:/app/deps/:rw
- ./_cache/node_modules/:/app/assets/node_modules/:rw
- ./_cache/cargo/registry/:/usr/local/cargo/registry/:rw
- .:/app/:rw
depends_on:
- db
healthcheck:
test: curl api.geysermc/health
interval: 60s
timeout: 5s
retries: 3
start_period: 10s
db:
profiles:
- dev
- prod
image: mariadb:latest
environment:
MARIADB_ROOT_PASSWORD: global_api
MARIADB_DATABASE: global_api_dev
restart: unless-stopped
# expose:
# - 3306
deploy:
replicas: 1
resources:
limits:
cpus: "0.5"
memory: 500M
ports:
- "3306:3306"