A hassle-free Planning Poker application to host on your NAS
50K+
A hassle-free Planning Poker application to deploy on your NAS.
This application is intended as a simplified and self-hostable alternative to Planning Poker Online.
It features:
It does not have fancy features like issues management, Jira integration or timers.
Deploying the application is easy as it's self-contained in a single container. All you need is to create a volume to persist the games settings (ID, name and deck).
docker run \
-v planning-poker-data:/data \
-p 8000:8000 \
axeleroy/self-host-planning-poker:latest
version: "3"
services:
planning-poker:
image: axeleroy/self-host-planning-poker:latest
ports:
- 8000:8000
volumes:
- planning-poker-data:/data
volumes:
planning-poker-data: {}
| Variable | Meaning | Example |
|---|---|---|
APP_ROOT (optional) | Allows you to deploy to another path than /.See Configuration examples for deploying on sub‐paths for more details. | APP_ROOT=/poker/ |
Refer to Socket.IO's documentation for setting up your reverse-proxy to work correctly with Socket.IO.
See Customizing the application's style and icon.
You are welcome to open Pull Requests resolving issues in the Project or tagged pr-welcome. Don't forget to mention the issue you want to close 😉
Open an issue and I'll take a look at it.
There is a Crowdin project that lets you add translations for your language. If your language is not available, feel free to contact me over Crowdin.
Content type
Image
Digest
sha256:0253f17c0…
Size
36.9 MB
Last updated
almost 3 years ago
docker pull axeleroy/self-host-planning-poker