diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 5990dec0c..e00ce9a62 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -161,7 +161,7 @@ jobs: -p 8211:8211/udp \ -p 27015:27015/udp \ -p 25575:25575/tcp \ - -v ./palworld:/palworld/ \ + -v ./palworld-${{ github.run_id }}:/palworld/ \ --env-file .env.example \ --restart unless-stopped \ --stop-timeout 30 \ diff --git a/Dockerfile b/Dockerfile index e3f6c413b..5a856263e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,9 +39,9 @@ LABEL maintainer="thijs@loef.dev" \ # SUPERCRONIC: Latest releases available at https://github.com/aptible/supercronic/releases # RCON: Latest releases available at https://github.com/gorcon/rcon-cli/releases # NOTICE: edit RCON_MD5SUM SUPERCRONIC_SHA1SUM when using binaries of another version or arch. -ARG SUPERCRONIC_SHA1SUM_ARM64="512f6736450c56555e01b363144c3c9d23abed4c" -ARG SUPERCRONIC_SHA1SUM_AMD64="cd48d45c4b10f3f0bfdd3a57d054cd05ac96812b" -ARG SUPERCRONIC_VERSION="0.2.29" +ARG SUPERCRONIC_SHA1SUM_ARM64="d5e02aa760b3d434bc7b991777aa89ef4a503e49" +ARG SUPERCRONIC_SHA1SUM_AMD64="9f27ad28c5c57cd133325b2a66bba69ba2235799" +ARG SUPERCRONIC_VERSION="0.2.30" # update and install dependencies # hadolint ignore=DL3008