Some checks failed
Build and Push Docker Image / build-and-push (push) Has been cancelled
28 lines
478 B
YAML
28 lines
478 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
bta-server:
|
|
image: 192.168.65.110:5000/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
|
|
networks:
|
|
- bta-network
|
|
tty: true
|
|
stdin_open: true
|
|
|
|
|
|
volumes:
|
|
bta-server-world:
|
|
|
|
networks:
|
|
bta-network:
|
|
driver: bridge
|