Sign inSign up

wherertheinterwebs/zomboid

By wherertheinterwebs

•Updated 30 days ago

Project Zomboid Dedicated Server

Image
0

2.3K

wherertheinterwebs/zomboid repository overview

The unstable tag follows the Steam unstable/42.19 branch.
The latest tag follows the Steam main branch starting with the release of 42.20.

Vim is built in for config editing.

⁠Version 42.20.2+

The INITIAL_CONFIG section is optional. You can put any config here to initialize the servertest.ini file before the server starts. Modify the example accordingly.

services:
  zomboid:
    image: wherertheinterwebs/zomboid:latest
    container_name: zomboid
    ports:
      - 16261:16261/udp
      - 16262:16262/udp
    stdin_open: true
    tty: true
    environment:
      INITIAL_CONFIG: |
        Password=ServerPasswordHere
        UPnP=false
        Mods=
        WorkshopItems=
      MAX_RAM: 4096m
      INITIAL_RAM: 2048m
    command: ["-adminpassword", "PasswordHere"]
    volumes:
      - zomboid:/app/Zomboid
volumes:
  zomboid:

⁠Prior to 42.20.2

services:
  zomboid:
    image: wherertheinterwebs/zomboid:latest
    container_name: zomboid
    ports:
      - 16261:16261/udp
      - 16262:16262/udp
    stdin_open: true
    tty: true
    environment:
      - MAX_RAM=4096m
      - INITIAL_RAM=2048m
    command: ./start-server.sh -adminpassword "PasswordHere"
    volumes:
      - zomboid:/app/Zomboid
volumes:
  zomboid:

Tag summary

Content type

Image

Digest

sha256:40de2824b…

Size

2.3 GB

Last updated

30 days ago

docker pull wherertheinterwebs/zomboid