A docker image for building and hosting games made in the BYOND Engine.
The latest stable version of BYOND.
A specific version of BYOND.
Example usage to host your projects.
docker run --detach \
--name game \
--volume /opt/game:/opt/game \
--publish 1337:1337 \
--restart unless-stopped \
ghcr.io/douglasparker/byond:latest DreamDaemon /opt/game/game.dmb -ports 1337
services:
byond:
image: ghcr.io/douglasparker/byond:latest
container_name: "game"
command: "DreamDaemon /opt/game/game.dmb -ports 1337"
volumes:
- /opt/game:/opt/game
ports:
- 1337:1337
restart: unless-stopped
Example usage to build your projects.
docker run --rm \
--volume /opt/game:/opt/game \
ghcr.io/douglasparker/byond:latest DreamMaker /opt/game/game.dme