All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 5s
28 lines
537 B
YAML
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 |