Files
docker-compose/compose/crafty/docker-compose.yml

18 lines
594 B
YAML

services:
crafty:
container_name: crafty_container
image: registry.gitlab.com/crafty-controller/crafty-4:latest
restart: always
environment:
TZ: "${TZ:-Etc/UTC}"
ports:
- "${HTTPS_PORT:-8443}:8443" # HTTPS
- "${PLEXMAP_PORT:-8444}:8080"
- "19132:19132/udp" # BEDROCK
- "25500-25600:25500-25600" # MC SERV PORT RANGE
volumes:
- "${BACKUPS_PATH:?}:/crafty/backups"
- "${LOGS_PATH:?}:/crafty/logs"
- "${SERVERS_PATH:?}:/crafty/servers"
- "${CONFIG_PATH:?}:/crafty/app/config"
- "${IMPORT_PATH:?}:/crafty/import"