Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add dynamic compose for spoolman #5938

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions apps/spoolman/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@
"available": true,
"port": 7912,
"exposable": true,
"dynamic_config": true,
"id": "spoolman",
"description": "Spoolman is a web service that helps you keep track of your filament spools and how they are being used. It acts as a database, where other printer software such as Octoprint and Moonraker can interact with to have a centralized place for spool information. For example, if used together with Moonraker, your spool weight will automatically be reduced as your print is progressing.",
"tipi_version": 9,
"tipi_version": 10,
Lancelot-Enguerrand marked this conversation as resolved.
Show resolved Hide resolved
"version": "0.21.0",
"categories": ["utilities", "automation"],
"short_desc": "Keep track of your inventory of 3D-printer filament spools",
"author": "Donkie",
"source": "https://github.com/Donkie/Spoolman",
"supported_architectures": ["arm64", "amd64"],
"created_at": 1691943801422,
"updated_at": 1733068838000
"updated_at": 1733761273730
}
21 changes: 21 additions & 0 deletions apps/spoolman/docker-compose.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"services": [
{
"name": "spoolman",
"image": "ghcr.io/donkie/spoolman:0.21.0",
"isMain": true,
"internalPort": 8000,
"environment": {
"TZ": "${TZ}",
"PUID": "0",
"PGID": "0"
Lancelot-Enguerrand marked this conversation as resolved.
Show resolved Hide resolved
},
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data",
"containerPath": "/home/app/.local/share/spoolman"
}
]
}
]
}
Loading