https://github.com/tkers/ozmoo-docker
Docker image for the Ozmoo z-machine interpreter
https://github.com/tkers/ozmoo-docker
c64 docker inform6 retrogaming
Last synced: 3 months ago
JSON representation
Docker image for the Ozmoo z-machine interpreter
- Host: GitHub
- URL: https://github.com/tkers/ozmoo-docker
- Owner: tkers
- Created: 2025-01-01T18:25:27.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-01-01T19:07:57.000Z (5 months ago)
- Last Synced: 2025-03-02T18:17:51.238Z (3 months ago)
- Topics: c64, docker, inform6, retrogaming
- Language: Makefile
- Homepage: https://hub.docker.com/repository/docker/tkers/ozmoo
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ozmoo-docker
Docker image for [Ozmoo](https://github.com/johanberntsson/ozmoo).
## Usage
Optionally pull the Docker image first:
```sh
docker pull tkers/ozmoo
```And verify that it works:
```sh
docker run --rm tkers/ozmoo -v
```In most cases you'll want to mount a volume to create an image from an existing z-machine story:
```sh
docker run --rm -v "$(PWD)":/data tkers/ozmoo dist/story.z3
```This would create a `c64_game.d64` disk image from the game located at `dist/story.z3`.
## Building locally
You can build the `ozmoo` image locally:
```sh
docker build -t ozmoo .
```Make sure to run it with the correct name:
```sh
docker run --rm ozmoo
```