Skip to content

fopwoc/odamex-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

odamex-docker

Build

odasrv in docker.

docker-compose

Put your wads and config in /path/to/data. Logs by default will also appear here. odasrv config examples you can get here.

version: '3'

services:
  odamex-server:
    image: ghcr.io/fopwoc/odamex-docker:latest
    volumes:
      - /path/to/data:/doom/.odamex
    ports:
      - 10666:10666/udp
    entrypoint: "/usr/bin/odasrv -config /doom/.odamex/odasrv.cfg -file example.wad example2.wad"

docker run

docker run -d \
   -v "/path/to/data:/home/doom/.odamex" \
   ghcr.io/fopwoc/odamex-docker:latest \
   --entrypoint "/usr/bin/odasrv -config /doom/.odamex/odasrv.cfg -file example.wad example2.wad"