Minetrack/docker-compose.yml
Liam 5c5e44ad20
All checks were successful
Publish Docker Image / docker (push) Successful in 5m6s
fix db location
2023-12-31 00:13:39 +00:00

21 lines
511 B
YAML

version: "3"
services:
minetrack:
image: fascinated/minetrack:latest
# or
# build: https://git.fascinated.cc/Fascinated/Minetrack.git
container_name: minetrack
dns:
- 8.8.8.8
- 1.1.1.1
ports:
- "8880:8080"
volumes:
# Copy these from the git repo
- ./servers.json:/usr/src/minetrack/servers.json
- ./config.json:/usr/src/minetrack/config.json
- ./data:/usr/src/minetrack/data # The sqlite database will be stored here
restart: always