container-server/services/games/docker-compose.yml

30 lines
760 B
YAML
Raw Normal View History

2023-10-29 20:22:54 +01:00
version: "3.7"
# https://github.com/imagegenius/docker-amp/pkgs/container/amp
services:
games:
image: ghcr.io/imagegenius/amp:2.5.0-ubuntu
2023-10-29 20:22:54 +01:00
container_name: games
restart: "${RESTART:-no}"
hostname: games
domainname: ${BASE_DOMAIN}
mac_address: 02:42:AC:D7:11:9C # Please see the README about this field.
labels:
com.centurylinklabs.watchtower.enable: false
expose:
- "8080" # expose amp web ui port for proxy
ports:
- 25565:25565 # For Java Edition (TCP)
- 2223:2223 # AMP FTP
environment:
- TZ=${TIMEZONE}
- LICENCE=${MINECRAFT_AMP_LICENSE}
- MODULE=ADS
- JAVA_VERSIONS=8
volumes:
- ${BASE_DIR:-/srv}/games:/config
networks:
- proxy
- mail