Stunt (master) + Improvise (master)
268
You must map ports 7777 (telnet) and 8888 (web) and you should share a persistent data directory.
docker run -p 7777:7777 -p 8888:8888 -v ~/data:/data toddsundsted/stunt:latest
Stunt requires sufficient entropy to seed the internal PRNG and will block until sufficient entropy is available. To speed up startup, mount /dev/urandom from the host as /dev/random in the container:
docker run -p 7777:7777 -p 8888:8888 -v /dev/urandom:/dev/random -v ~/data:/data toddsundsted/stunt:latest
The first time this image is run it copies the necessary runtime files into the /data directory. There are two preexisting players: "Wizard" and "Programmer". Their passkeys are "wizard" and "programmer" respectively.
For more information on Stunt see https://github.com/toddsundsted/stunt. For more information on Improvise see https://github.com/toddsundsted/improvise.
Content type
Image
Digest
sha256:22918aafb…
Size
69.9 MB
Last updated
almost 11 years ago
docker pull toddsundsted/stunt