Minetrack/docker-compose.yml

21 lines
511 B
YAML
Raw Normal View History

2023-12-30 22:34:01 +00:00
version: "3"
services:
minetrack:
2023-12-30 23:27:22 +00:00
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:
2023-12-31 00:13:39 +00:00
- "8880:8080"
2023-12-30 22:34:01 +00:00
volumes:
2023-12-30 22:39:18 +00:00
# Copy these from the git repo
2023-12-30 22:34:01 +00:00
- ./servers.json:/usr/src/minetrack/servers.json
- ./config.json:/usr/src/minetrack/config.json
2023-12-30 22:39:18 +00:00
2023-12-31 00:13:39 +00:00
- ./data:/usr/src/minetrack/data # The sqlite database will be stored here
restart: always