AVA-docker/docker-compose.yml

129 lines
4.4 KiB
YAML
Raw Normal View History

2024-02-06 08:42:50 +00:00
version: '3'
services:
traefik:
2024-02-14 11:02:14 +00:00
image: traefik
2024-02-06 08:42:50 +00:00
restart: unless-stopped
ports:
- "80:80"
- "443:443"
volumes:
2024-02-14 11:02:14 +00:00
#- /var/run/docker.sock:/var/run/docker.sock
- "////./pipe/docker_engine:/var/run/docker.sock"
- ./traefik.yml:/etc/traefik/traefik.yml
- ./authorized_users:/etc/traefik/authorized_users
- ./acme.json:/acme.json
2024-02-06 08:42:50 +00:00
labels:
- "traefik.enable=true"
- "traefik.http.routers.dashboard-http.entrypoints=http"
2024-02-14 11:02:14 +00:00
- "traefik.http.routers.dashboard-http.rule=Host(`localhost/`)"
2024-02-06 08:42:50 +00:00
- "traefik.http.routers.dashboard-http.middlewares=dashboard-redirect"
- "traefik.http.middlewares.dashboard-redirect.redirectscheme.scheme=https"
- "traefik.http.routers.dashboard-https.entrypoints=https"
2024-02-14 11:02:14 +00:00
- "traefik.http.routers.dashboard-https.rule=(Host(`localhost/`)) && (PathPrefix(`/api`) || PathPrefix(`/dashboard`))"
2024-02-06 08:42:50 +00:00
- "traefik.http.routers.dashboard-https.tls.certResolver=letsencrypt"
- "traefik.http.routers.dashboard-https.service=api@internal"
- "traefik.http.routers.dashboard-https.middlewares=dashboard-auth"
- "traefik.http.middlewares.dashboard-auth.basicauth.usersfile=/etc/traefik/authorized_users"
2024-02-14 11:02:14 +00:00
command:
# Enable Docker in Traefik, so that it reads labels from Docker services
- --providers.docker
# Add a constraint to only use services with the label "traefik.constraint-label=traefik-public"
#- --providers.docker.constraints=Label(`traefik.constraint-label`, `traefik-public`)
# Do not expose all Docker services, only the ones explicitly exposed
#- --providers.docker.exposedbydefault=false
# Enable Docker Swarm mode
- --providers.docker.swarmmode
# Create an entrypoint "http" listening on port 80
- --entrypoints.http.address=:80
# Create an entrypoint "https" listening on port 443
- --entrypoints.https.address=:443
# Create the certificate resolver "le" for Let's Encrypt, uses the environment variable EMAIL
#- --certificatesresolvers.le.acme.email='cboivin@secure-exchanges.com'#$EMAIL
# Store the Let's Encrypt certificates in the mounted volume
#- --certificatesresolvers.le.acme.storage=/certificates/acme.json
# Use the TLS Challenge for Let's Encrypt
#- --certificatesresolvers.le.acme.tlschallenge=true
# Enable the access log, with HTTP requests
- --accesslog
# Enable the Traefik log, for configurations and errors
- --log
# Enable the Dashboard and API
- --api.insecure=true
2024-02-06 08:42:50 +00:00
2024-02-14 11:02:14 +00:00
# Docker engine
- --providers.docker.endpoint=npipe:////./pipe/docker_engine
2024-02-06 08:42:50 +00:00
2024-05-11 14:36:56 +00:00
minecraft-test-docker:
image: itzg/minecraft-server
2024-02-06 08:42:50 +00:00
restart: unless-stopped
volumes:
2024-05-11 14:36:56 +00:00
- "./mc:/data"
2024-02-06 08:42:50 +00:00
ports:
2024-05-11 14:36:56 +00:00
- "25565:25565"
2024-02-06 08:42:50 +00:00
environment:
2024-05-11 14:36:56 +00:00
EULA: "TRUE"
TYPE: FORGE
VERSION: "1.20.1"
FORGE_VERSION: "47.2.32"
ENABLE_AUTOPAUSE: "TRUE"
INIT_MEMORY: "256M"
MAX_MEMORY: "25G"
TZ: "Europe/Berne"
OVERRIDE_SERVER_PROPERTIES: "TRUE"
MAX_TICK_TIME: "-1"
DIFFICULTY: "normal"
MODE: "creative"
MOTD: "Welcome Home"
# More aggressive settings for demo purposes
AUTOPAUSE_TIMEOUT_INIT: "30"
AUTOPAUSE_TIMEOUT_EST: "10"
2024-02-26 08:08:06 +00:00
2024-02-26 10:19:04 +00:00
lazytainer:
image: ghcr.io/vmorganp/lazytainer:master
environment:
VERBOSE: false
ports:
- 25565:25565
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
labels:
- lazytainer.group.minecraft.sleepMethod=stop
- lazytainer.group.minecraft.ports=25565
- lazytainer.group.minecraft.minPacketThreshold=2 # Start after two incomming packets
- lazytainer.group.minecraft.inactiveTimeout=60 # 10 minutes, to allow the server to bootstrap. You can probably make this lower later if you want.
restart: unless-stopped
network_mode: bridge
2024-02-26 08:08:06 +00:00
minecraft:
image: 'itzg/minecraft-server'
restart: unless-stopped
stdin_open: true
tty: true
volumes:
2024-02-26 08:19:28 +00:00
- "./mc:/data"
- "./mods:/mods:ro"
2024-02-26 10:19:04 +00:00
depends_on:
- lazytainer
network_mode: service:lazytainer
2024-02-26 08:08:06 +00:00
environment:
EULA: "TRUE"
2024-02-26 08:19:28 +00:00
TYPE: "FORGE"
2024-02-26 10:19:04 +00:00
TZ: "Europe/Zurich"
2024-02-26 08:08:06 +00:00
MAX_TICK_TIME: "-1"
2024-02-26 08:24:33 +00:00
INIT_MEMORY: 128M
MAX_MEMORY: 20G
2024-02-26 08:08:06 +00:00
2024-02-26 10:19:04 +00:00
#OVERRIDE_SERVER_PROPERTIES: "TRUE"
#ENABLE_AUTOPAUSE: "TRUE"
#AUTOPAUSE_TIMEOUT_INIT: "30"
#AUTOPAUSE_TIMEOUT_EST: "10"
DIFFICULTY: "easy"