biosmarcel/scribble.rs

By biosmarcel

Updated about 1 month ago

Container for https://github.com/scribble-rs/scribble.rs

Image
1

500K+

biosmarcel/scribble.rs repository overview

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

Configuration is read from environment variables or a .env file located in the working directory.

Available settings:

KeyDescriptionDefaultRequired
PORTHTTP port that the server listens to.8080True
NETWORK_ADDRESSTCP address that the server listens to.False
ROOT_PATHChanges the path (after your domain) that the server listens to.False

You can also pass the .env file to docker via --env-file.

Running The Container

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

nginx

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.

Tag summary

Content type

Image

Digest

sha256:9d1d65153

Size

6.8 MB

Last updated

about 1 month ago

docker pull biosmarcel/scribble.rs:v0.9.14