forked from ACEmulator/ACE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.arm64
More file actions
37 lines (35 loc) · 819 Bytes
/
docker-compose.arm64
File metadata and controls
37 lines (35 loc) · 819 Bytes
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
version: '3'
services:
ace-db:
#image: linuxserver/mariadb:latest
image: mysql/mysql-server:latest
container_name: ace-db
env_file:
- docker.env
volumes:
#- ./db-data:/config
- ./db-data:/var/lib/mysql
ports:
- "3306:3306/tcp"
restart: unless-stopped
healthcheck:
test: ["CMD", "mysqladmin", "ping", "-h", "localhost"]
ace-server:
build:
context: .
dockerfile: Dockerfile.arm64
image: acemulator/ace:latest-arm64
depends_on:
- ace-db
container_name: ace-server
env_file:
- docker.env
volumes:
- ./Config:/ace/Config
- ./Content:/ace/Content
- ./Dats:/ace/Dats
- ./Logs:/ace/Logs
ports:
- "9000-9001:9000-9001/udp"
#restart: unless-stopped
restart: on-failure