- Ensure to change the "changeme" values in the Dockerfile.
-Xmsand-Xmxflags can be added toentry.shto manage memory. Check other Project Zomboid startup parametersgit clone https://github.com/tomasdev/pzsvcd pzsvdocker build -t pzsv .docker run -d -p $HOST_IP:16261:16261/udp -ti pzsv
To change the ini file (pending work)
docker ps -ato list all containers, to find the CONTAINER_ID. If the container is not running, probably there's an error on the logs.docker logs -f $CONTAINER_IDto see the live logs on the server starting up. Look for the lineZomboid Server is VAC Securedocker exec -it $CONTAINER_ID bashto ssh into the container- (inside the container)
nano Zomboid/Server/changeme.inito change the settings of the server. docker stop $CONTAINER_ID && docker start $CONTAINER_IDto restart the server and pickup the changes.