Compare commits
10 Commits
474c68c5f7
...
renovate/g
| Author | SHA1 | Date | |
|---|---|---|---|
| 5195537e0b | |||
| 286c1a409f | |||
| 770dded82f | |||
| 94e51003e9 | |||
| ee48596cac | |||
| 3c987d616e | |||
| 5fde48934c | |||
| 6fcb85afac | |||
| fcd1e709c5 | |||
| 55f7cbe9c3 |
@@ -1,7 +1,7 @@
|
||||
services:
|
||||
backrest:
|
||||
container_name: backrest
|
||||
image: docker.io/garethgeorge/backrest:v1.11.2@sha256:6ecf25925dafcb6b37ab871d23c1d424a6f5008191a631c0b520641ec22a3f84
|
||||
image: docker.io/garethgeorge/backrest:v1.12.0@sha256:448fee1cb4cdf3f7d7078078480d38713673924ad415bfdf84bf9e49ff570201
|
||||
restart: unless-stopped
|
||||
hostname: ${HOSTNAME}
|
||||
environment:
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
services:
|
||||
handbrake:
|
||||
container_name: handbrake
|
||||
image: ghcr.io/jlesage/handbrake:v26.01.1
|
||||
image: ghcr.io/jlesage/handbrake:v26.03.1
|
||||
restart: unless-stopped
|
||||
deploy:
|
||||
resources:
|
||||
|
||||
@@ -4,10 +4,10 @@ services:
|
||||
image: ghcr.io/finsys/hawser:0.2.29@sha256:b6f8eabb5e839a1950fae5302db5a96e98dbe63e928e8178c3ca682aed008e26
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- AGENT_NAME=${AGENT_NAME}
|
||||
- TOKEN=${TOKEN}
|
||||
- LOG_LEVEL=${LOG_LEVEL}
|
||||
volumes:
|
||||
- ./stacks:/data/stacks
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
ports:
|
||||
- 2376:2376
|
||||
|
||||
56
jellystat/compose.yaml
Normal file
56
jellystat/compose.yaml
Normal file
@@ -0,0 +1,56 @@
|
||||
services:
|
||||
jellystat_db:
|
||||
container_name: jellystat_db
|
||||
image: docker.io/library/postgres:18.2@sha256:9b5bd946f3a507db72c55959700e517463e8d5dbb6f7eb30d920d5bcf6951431
|
||||
restart: unless-stopped
|
||||
shm_size: '1gb'
|
||||
environment:
|
||||
- POSTGRES_USER=${POSTGRES_USER}
|
||||
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
||||
- POSTGRES_DB=${POSTGRES_DB}
|
||||
- PGDATA=/var/lib/postgresql/18/docker
|
||||
volumes:
|
||||
- ${APPDATA_PATH}/jellystat/db:/var/lib/postgresql
|
||||
networks:
|
||||
- backend
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -d ${POSTGRES_DB} -U ${POSTGRES_USER}"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 3
|
||||
start_period: 10s
|
||||
|
||||
jellystat:
|
||||
container_name: jellystat
|
||||
image: ghcr.io/cyfershepard/jellystat:1.1.8@sha256:c8c451704ba7985340142cd047e2364cabaf41b613669b6c5340688ed217f82a
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
jellystat-db:
|
||||
condition: service_healthy
|
||||
environment:
|
||||
- POSTGRES_USER=${POSTGRES_USER}
|
||||
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
||||
- POSTGRES_DB=${POSTGRES_DB}
|
||||
- POSTGRES_IP=jellystat_db
|
||||
- POSTGRES_PORT=5432
|
||||
- JWT_SECRET=${JWT_SECRET}
|
||||
- TZ=${TZ}
|
||||
volumes:
|
||||
- ${APPDATA_PATH}/jellystat/backup-data:/app/backend/backup-data
|
||||
ports:
|
||||
- ${PORT}:3000
|
||||
networks:
|
||||
- frontend
|
||||
- backend
|
||||
healthcheck:
|
||||
test: wget --no-verbose --tries=1 --spider http://localhost:3000/auth/isConfigured || exit 1
|
||||
interval: 60s
|
||||
timeout: 30s
|
||||
retries: 5
|
||||
start_period: 30s
|
||||
|
||||
networks:
|
||||
frontend:
|
||||
external: true
|
||||
backend:
|
||||
external: true
|
||||
19
open-webui/compose.yaml
Normal file
19
open-webui/compose.yaml
Normal file
@@ -0,0 +1,19 @@
|
||||
services:
|
||||
open-webui:
|
||||
container_name: open-webui
|
||||
image: ghcr.io/open-webui/open-webui:v0.8.8-ollama@sha256:781938633d6d445daa489fcdc0c1988c4c875e6358175f484fdd8a89aa152503
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- OLLAMA_BASE_URL=${OLLAMA_BASE_URL}
|
||||
- WEBUI_SECRET_KEY=${WEBUI_SECRET_KEY}
|
||||
- WEBUI_AUTH=true
|
||||
volumes:
|
||||
- ${APPDATA_PATH}/open-webui/data:/app/backend/data
|
||||
ports:
|
||||
- ${PORT}:8080
|
||||
networks:
|
||||
- frontend
|
||||
|
||||
networks:
|
||||
frontend:
|
||||
external: true
|
||||
@@ -21,7 +21,7 @@ services:
|
||||
|
||||
pocket-id:
|
||||
container_name: pocket-id
|
||||
image: ghcr.io/pocket-id/pocket-id:v2.2.0-distroless@sha256:ad2d21a7b31d6b4f1d999caec794a5b5edeb97fc40801947158d62befd4203e3
|
||||
image: ghcr.io/pocket-id/pocket-id:v2.3.0-distroless@sha256:85a7485108325e34679b0fbca0baeb8418401f6d6cf59944d50f3ec013aafd09
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
pocket-id-db:
|
||||
|
||||
Reference in New Issue
Block a user