Installation Failure Docker

OS Name/Version: Debian 11 bullseye / Docker Version 24.0.2

Product Name/Version: mitchtalmadge/amp-dockerized v2.4.3.6

Problem Description:

Hello everyone, I have a problem installing this image. I inserted my Cubecoder AMP Pro License key in the specified line but the logs keep saying it doesnt exist.

----------------------
Starting AMP-Dockerized...
----------------------
Note: This is an UNOFFICIAL IMAGE for CubeCoders AMP. This was created by the community, NOT CubeCoders.
Please, DO NOT contact CubeCoders (Discord or otherwise) for technical support when using this image.
They do not support nor endorse this image and will not help you.
Instead, please direct support requests to https://github.com/MitchTalmadge/AMP-dockerized/issues.
We are happy to help you there!
Thank you!!
----------------------
Copying AMP Core...
Ensuring AMP user exists...
Adding group `amp' (GID 124) ...
Done.
Adding system user `amp' (UID 120) ...
Adding new user `amp' (UID 120) with group `amp' ...
Not creating home directory `/home/amp'.
Ensuring correct file permissions...
Setting timezone from TZ env var...
Current default time zone: 'Etc/UTC'
Local time is now:      Fri May 26 08:54:09 UTC 2023.
Universal Time is now:  Fri May 26 08:54:09 UTC 2023.
Making sure Main instance exists...
Creating Main instance... (This can take a while)
[Info] AMP Instance Manager v2.4.3.6 built 07/05/2023 12:05
[Info] Release spec: Release - built by CUBECODERS/buildbot on CCL-DEV
[Info] Testing internet connection...
[Info] Checking licence key...
[Info] This licence key does not exist.
Setting all instances to use MainLine updates...
Upgrading Instances...
[Info] AMP Instance Manager v2.4.3.6 built 07/05/2023 12:05
[Info] Release spec: Release - built by CUBECODERS/buildbot on CCL-DEV
[Info] There are no instances to update.
Ensuring Main Instance will Start on Boot...
Starting AMP...
[Info] AMP Instance Manager v2.4.3.6 built 07/05/2023 12:05
[Info] Release spec: Release - built by CUBECODERS/buildbot on CCL-DEV
[Info] No AMP instances are currently set to start automatically on boot.

AMP Started.
----------------------
NOTICE: Java 17 is now the default in this image. Java 16 has been removed in preference of Java 17, which is LTS.
Use the Java Configuration section in the AMP Web UI to select a specific version. Otherwise, Java 17 will be used automatically.
----------------------
Entrypoint Sleeping. Logs can be viewed through AMP web UI or at ampdata/instances/Main/AMP_Logs

My Dockerfile:

yaml
# This configuration creates one ADS instance, which can be used to create multiple "child" instances.
# This is a good choice if you want to run multiple game servers, even of different types.
version: "3"
services:
  amp:
    container_name: amp
    image: mitchtalmadge/amp-dockerized:latest
    mac_address: 02:42:AC:7D:XX:XX # Please see the README about this field.
    ports:
      - 8080: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.)
      - 34197:34197/udp # Factorio
      # 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=120" # Change according to which user on the host will own the ampdata volume.
      - "GID=124"
      - "TZ=Etc/UTC" # https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
      - "LICENCE=0b82cabf-xxxx-xxxx-xxxx-xxxxxxxxxxx"
      - "MODULE=ADS"
    restart: unless-stopped

Actions taken to resolve so far: Used different Mac-Adresses

Please read the start of the log you posted.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.