Files
bta-server/docker-compose.yml
The Fox 81b69770c6
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 5s
Update docker-compose.yml
2026-03-16 19:58:09 +00:00

28 lines
537 B
YAML

version: "3.9"
services:
bta-server:
image: registry.ciomek.pl/bta-server
container_name: bta-server
restart: unless-stopped
ports:
- "25565:25565"
entrypoint: ["/server/entrypoint.sh"]
environment:
- JAVA_MAX_MEM=8G
- JAVA_MIN_MEM=1G
volumes:
- bta-server-world:/server/world
- bta-server-config:/server/config
networks:
- bta-network
tty: true
stdin_open: true
volumes:
bta-server-world:
bta-server-config:
networks:
bta-network:
driver: bridge