-
-
Notifications
You must be signed in to change notification settings - Fork 521
Open
Labels
Description
Application you'd like to add:
Spoolman
Link to Docker image:
ghcr.io/donkie/spoolman:latest
Why you'd like this application added:
Spoolman is a very convenient way to keep track of 3d printers spool inventory, with automatic calculations of used filament, wrong spool material etc. when paired with the moonraker plugin (on the 3d printer side).
Setup is straightforward and easy to integrate in ansible-nas
sample docker-compose
version: '3.8'
services:
spoolman:
image: ghcr.io/donkie/spoolman:latest
restart: unless-stopped
volumes:
- ${CONFIG_FOLDER}:/home/app/.local/share/spoolman
ports:
- 7912:8000
environment:
- TZ=${TZ}
labels:
traefik.enable: ${AVAILABLE_EXTERNALLY}
traefik.http.routers.spoolman.rule: "Host(`spoolman.${ANSIBLE_NAS_DOMAIN}`)"
traefik.http.routers.spoolman.tls.certresolver: "letsencrypt"
traefik.http.routers.spoolmam.tls.domains[0].main: "${ANSIBLE_NAS_DOMAIN}"
traefik.http.routers.spoolman.tls.domains[0].sans: "*.${ANSIBLE_NAS_DOMAIN}"
traefik.http.services.spoolman.loadbalancer.server.port: "8000"Reactions are currently unavailable