MitchTalmadge / AMP-dockerized

CubeCoders AMP in a Docker Image. Easily create game servers for games like Minecraft, GMod, TF2, Factorio, and StarBound!
https://hub.docker.com/r/mitchtalmadge/amp-dockerized
Other
91 stars 22 forks source link

Crash while starting container #141

Open nanzer opened 1 year ago

nanzer commented 1 year ago

Hello! Wondering if I could get some help. I crash when starting using this docker-compose:

version: "3"
services:
  amp:
    container_name: amp
    image: mitchtalmadge/amp-dockerized:latest
    mac_address: 02:42:AC:9E:65:DE
    ports:
      - 8081:8080
      - 25565:25565 # Example port for Minecraft Java server.
      - 27015:27015/udp # Example port for GMod/TF2/etc. source game servers. (Notice how it uses UDP, not TCP.)
      # Add more ports as needed for whatever game servers you'll be running.
      # Create the game instances through the ADS web UI.
    volumes:
      - ./ampdata:/home/amp/.ampdata
    environment:
      - "UID=1000" # Change according to which user on the host will own the ampdata volume.
      - "GID=1000"
      - "TZ={redacted}" # https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
      - "LICENCE={redacted}"
      - "MODULE=ADS"
    restart: unless-stopped
    labels:
      - "traefik.enable=true"
      - "traefik.http.routers.amp-ui.rule=Host(`{redacted}`)"
      - "traefik.http.services.amp-ui.loadbalancer.server.port=8081"

The labels are working as intended, verified inside traefik. Host machine is running on the latest Rocky Linux

The logfile is attached! logfile.txt