Minetrack/docker-compose.yml
2023-12-30 22:39:18 +00:00

19 lines
443 B
YAML

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