Compare commits

..

6 Commits

4 changed files with 36 additions and 30 deletions

View File

@@ -137,15 +137,31 @@ services:
restart: unless-stopped restart: unless-stopped
profilarr: profilarr:
image: santiagosayshey/profilarr:latest # Use :beta for early access to new features image: ghcr.io/dictionarry-hub/profilarr:latest
container_name: profilarr 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 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: flaresolverr:
image: ghcr.io/flaresolverr/flaresolverr:latest image: ghcr.io/flaresolverr/flaresolverr:latest

View File

@@ -1,3 +1,4 @@
PG_USER=bambuddy PG_USER=bambuddy
PG_PASS=changeme PG_PASS=changeme
DATA_PATH=/mnt/data DATA_PATH=/mnt/data
LOGS_PATH=/mnt/logs

View File

@@ -4,33 +4,18 @@ services:
container_name: bambuddy container_name: bambuddy
network_mode: host # Recommended for automatic printer discovery network_mode: host # Recommended for automatic printer discovery
volumes: volumes:
- bambuddy_data:/app/data - ${DATA_PATH}:/app/data
- bambuddy_logs:/app/logs - ${LOGS_PATH}:/app/logs
- ${DATA_PATH}/media/projects:/external/nas
environment: environment:
- PUID=${PUID:-1000}
- PGID=${PGID:-1000}
- TZ=America/Toronto # Your timezone - 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 - TRUSTED_FRAME_ORIGINS=http://homeassistant.local:8123
- BAMBUDDY_EXTERNAL_ROOTS=/external/nas
- PORT=8870 - PORT=8870
restart: unless-stopped restart: unless-stopped
# Docker SIGKILLs after 10s by default. Bambuddy stops well inside that, # Docker SIGKILLs after 10s by default. Bambuddy stops well inside that,
# but the headroom means a slow teardown (several virtual printers on a Pi) # but the headroom means a slow teardown (several virtual printers on a Pi)
# can still checkpoint the database instead of being killed mid-write. # can still checkpoint the database instead of being killed mid-write.
stop_grace_period: 30s 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: volumes:
bambuddy_data:
bambuddy_logs: bambuddy_logs:
bambuddy_pgdata:

View File

@@ -1,17 +1,21 @@
services: services:
jellyfin: jellyfin:
image: linuxserver/jellyfin image: jellyfin/jellyfin:preview
container_name: jellyfin container_name: jellyfin
environment: environment:
- PUID=${PUID} - PUID=${PUID}
- PGID=${PGID} - PGID=${PGID}
- TZ=Canada/Eastern - TZ=Canada/Eastern
volumes: volumes:
- jellyfin:/config - jellyfin_config:/config
- jellyfin_cache:/cache
- ${DATA_PATH}/media/:/data/media - ${DATA_PATH}/media/:/data/media
ports: ports:
- 8096:8096 - 8096:8096
restart: unless-stopped restart: unless-stopped
volumes: volumes:
jellyfin: jellyfin_config:
name: jellyfin_config
jellyfin_cache:
name: jellyfin_cache