Skip to content

A docker image for building and hosting games made in the BYOND Engine.

License

Notifications You must be signed in to change notification settings

qqqZXzz123/byond

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BYOND

Version Docker Pulls Image Size License

A docker image for building and hosting games made in the BYOND Engine.

Tags

Latest

The latest stable version of BYOND.

Version

A specific version of BYOND.

DreamDaemon (Host)

Example usage to host your projects.

Docker Run

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

Docker Compose

docker-compose.yml

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

DreamMaker (Build)

Example usage to build your projects.

Docker Run

docker run --rm \
  --volume /opt/game:/opt/game \
  ghcr.io/douglasparker/byond:latest DreamMaker /opt/game/game.dme

About

A docker image for building and hosting games made in the BYOND Engine.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published