Skip to content

collabnix/doom-wasm-docker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Running Doom WASM on Docker Desktop on Mac M1 Pro

There is a meme in the IT community about running Doom on any device possible - be it calculators or really anything with a display. This repository provides a dockerized way to host Doom 1 as a webservice making it publicly available to any clients with a keyboard.

To run the image, you can wrap it in a docker-compose.yml like this:

version: "3.8"
services:
  doom-wasm:
    image: ghcr.io/trisnol/doom-wasm:main
    plaform: linux/amd64
    restart: unless-stopped
    ports:
      - 8080:8000

Running Compose

docker compose up -d
image

Accessing the app

Open https://localhost:8080 to access the app

image

Credits

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 100.0%