scribble.rs
Container for https://github.com/scribble-rs/scribble.rs
500K+
Scribble.rs is an alternative to the web-based drawing game skribbl.io. My main problems with skribbl.io were the ads and the fact that a disconnect would cause you to lose your points. On top of that, the automatic word choice was quite annoying and caused some frustration.
The application will not display any ads or share any data with third parties.
Configuration is read from environment variables or a .env file located in
the working directory.
Available settings:
| Key | Description | Default | Required |
|---|---|---|---|
| PORT | HTTP port that the server listens to. | 8080 | True |
| NETWORK_ADDRESS | TCP address that the server listens to. | False | |
| ROOT_PATH | Changes the path (after your domain) that the server listens to. | False |
You can also pass the .env file to docker via --env-file.
docker run --pull always --env PORT=<port> -p <port>:<port> biosmarcel/scribble.rs:latest
If you are running Windows as your host system, you can also run native Windows containers:
docker run --pull always --env PORT=<port> -p <port>:<port> biosmarcel/scribble.rs:windows-latest
Since Scribble.rs uses WebSockets, when running it behind an nginx reverse proxy, you have to configure nginx to support that. You will find an example configuration on the related Wiki page.
Other reverse proxies may require similar configuration. If you are using a well known reverse proxy, you are free to contribute a configuration to the wiki.
Content type
Image
Digest
sha256:9d1d65153…
Size
6.8 MB
Last updated
about 1 month ago
docker pull biosmarcel/scribble.rs:v0.9.14