Compare commits
6 Commits
470beb5012
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b18347315d | ||
|
|
8bdfc349fe | ||
|
|
30012b26fb | ||
|
|
c693659e79 | ||
|
|
7beab84467 | ||
|
|
3bb83cf591 |
@@ -137,15 +137,31 @@ services:
|
||||
restart: unless-stopped
|
||||
|
||||
profilarr:
|
||||
image: santiagosayshey/profilarr:latest # Use :beta for early access to new features
|
||||
image: ghcr.io/dictionarry-hub/profilarr:latest
|
||||
container_name: profilarr
|
||||
ports:
|
||||
- 6868:6868
|
||||
volumes:
|
||||
- /path/to/your/data:/config # Replace with your actual path
|
||||
environment:
|
||||
- TZ=UTC # Set your timezone
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "6868:6868"
|
||||
volumes:
|
||||
- ${CONFIG_PATH}/profilarr:/config
|
||||
environment:
|
||||
- PUID=${PUID}
|
||||
- PGID=${PGID}
|
||||
- UMASK=022
|
||||
- TZ=Canada/Eastern
|
||||
- PARSER_HOST=parser
|
||||
- PARSER_PORT=5000
|
||||
depends_on:
|
||||
parser:
|
||||
condition: service_healthy
|
||||
|
||||
# Optional - only needed for CF/QP testing
|
||||
parser:
|
||||
image: ghcr.io/dictionarry-hub/profilarr-parser:latest
|
||||
container_name: profilarr-parser
|
||||
restart: unless-stopped
|
||||
expose:
|
||||
- "5000"
|
||||
|
||||
flaresolverr:
|
||||
image: ghcr.io/flaresolverr/flaresolverr:latest
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
PG_USER=bambuddy
|
||||
PG_PASS=changeme
|
||||
DATA_PATH=/mnt/data
|
||||
LOGS_PATH=/mnt/logs
|
||||
@@ -4,33 +4,18 @@ services:
|
||||
container_name: bambuddy
|
||||
network_mode: host # Recommended for automatic printer discovery
|
||||
volumes:
|
||||
- bambuddy_data:/app/data
|
||||
- bambuddy_logs:/app/logs
|
||||
- ${DATA_PATH}/media/projects:/external/nas
|
||||
- ${DATA_PATH}:/app/data
|
||||
- ${LOGS_PATH}:/app/logs
|
||||
environment:
|
||||
- PUID=${PUID:-1000}
|
||||
- PGID=${PGID:-1000}
|
||||
- TZ=America/Toronto # Your timezone
|
||||
- DATABASE_URL=postgresql://${PG_USER:-bambuddy}:${PG_PASS:?database password required}@postgres:5432/bambuddy
|
||||
- TRUSTED_FRAME_ORIGINS=http://homeassistant.local:8123
|
||||
- BAMBUDDY_EXTERNAL_ROOTS=/external/nas
|
||||
- PORT=8870
|
||||
restart: unless-stopped
|
||||
# Docker SIGKILLs after 10s by default. Bambuddy stops well inside that,
|
||||
# but the headroom means a slow teardown (several virtual printers on a Pi)
|
||||
# can still checkpoint the database instead of being killed mid-write.
|
||||
stop_grace_period: 30s
|
||||
postgres:
|
||||
image: postgres:16-alpine
|
||||
container_name: bambuddy-db
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
POSTGRES_USER: ${PG_USER:-bambuddy}
|
||||
POSTGRES_PASSWORD: ${PG_PASS:?database password required}
|
||||
POSTGRES_DB: bambuddy
|
||||
volumes:
|
||||
- bambuddy_pgdata:/var/lib/postgresql/data
|
||||
ports:
|
||||
- "5432:5432"
|
||||
volumes:
|
||||
bambuddy_data:
|
||||
bambuddy_logs:
|
||||
bambuddy_pgdata:
|
||||
@@ -1,17 +1,21 @@
|
||||
|
||||
services:
|
||||
jellyfin:
|
||||
image: linuxserver/jellyfin
|
||||
image: jellyfin/jellyfin:preview
|
||||
container_name: jellyfin
|
||||
environment:
|
||||
- PUID=${PUID}
|
||||
- PGID=${PGID}
|
||||
- TZ=Canada/Eastern
|
||||
volumes:
|
||||
- jellyfin:/config
|
||||
- jellyfin_config:/config
|
||||
- jellyfin_cache:/cache
|
||||
- ${DATA_PATH}/media/:/data/media
|
||||
ports:
|
||||
- 8096:8096
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
jellyfin:
|
||||
jellyfin_config:
|
||||
name: jellyfin_config
|
||||
jellyfin_cache:
|
||||
name: jellyfin_cache
|
||||
Reference in New Issue
Block a user