acemod / docker-reforger

Arma Reforger installation in Docker
MIT License
59 stars 30 forks source link

GAME_MODS_IDS_LIST does not add mods #24

Closed hafometh88 closed 1 year ago

hafometh88 commented 1 year ago

Describe the bug Populate the variable GAME_MODS_IDS_LIST with mod IDs and after recreating the container, mods are not added to the server

To Reproduce My docker-compose.yml


version: '3.8' services: arma-reforger: image: ghcr.io/acemod/arma-reforger:edge platform: linux/amd64 container_name: arma-reforger ports:

hafometh88 commented 1 year ago

Here are all logs from the container

console.log error.log script.log

sdsznsk commented 1 year ago

I think I got the cause, working on a fix

sdsznsk commented 1 year ago

Actually I though the cause was something else (#26) , but rather it's the fact that support for mods was introduced after edge->latest switch from #22 , so it's not present in edge tag.

Switch to image: ghcr.io/acemod/arma-reforger:latest will solve the issue.

hafometh88 commented 1 year ago

I totally missed that, thank you! I used the docker-compose.yml template in the project, so I did not even look at the image tag properly :) Now I am just patiently waiting for #26 to be approved.