mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
e7e15ea704
So crafty always starts on boot by example
23 lines
599 B
Plaintext
23 lines
599 B
Plaintext
---
|
|
version: '3'
|
|
|
|
services:
|
|
crafty:
|
|
container_name: crafty_container
|
|
image: registry.gitlab.com/crafty-controller/crafty-4:latest
|
|
restart: always
|
|
environment:
|
|
- TZ=Etc/UTC
|
|
ports:
|
|
- "8000:8000" # HTTP
|
|
- "8443:8443" # HTTPS
|
|
- "8123:8123" # DYNMAP
|
|
- "19132:19132/udp" # BEDROCK
|
|
- "25500-25600:25500-25600" # MC SERV PORT RANGE
|
|
volumes:
|
|
- ./docker/backups:/crafty/backups
|
|
- ./docker/logs:/crafty/logs
|
|
- ./docker/servers:/crafty/servers
|
|
- ./docker/config:/crafty/app/config
|
|
- ./docker/import:/crafty/import
|