/doom-wasm-docker

Dockerized Doom wasm

Primary LanguageDockerfileGNU General Public License v2.0GPL-2.0

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