Compare commits
52 Commits
e5853b7c69
...
renovate/g
| Author | SHA1 | Date | |
|---|---|---|---|
| 58c6597e53 | |||
| 94e51003e9 | |||
| ee48596cac | |||
| 3c987d616e | |||
| 5fde48934c | |||
| 474c68c5f7 | |||
| e916264051 | |||
| 94287bf804 | |||
| 3dcad69f1b | |||
| 6fcb85afac | |||
| 83f160c71d | |||
| 4f083dfe44 | |||
| 98617d8a21 | |||
| 9fe8704abe | |||
| 0e85234631 | |||
| 630b78123d | |||
| 8136cc18aa | |||
| 1c660712da | |||
| c614312981 | |||
| 5b9ee5c221 | |||
| fcd1e709c5 | |||
| 55f7cbe9c3 | |||
| 6f70e974a4 | |||
| 62ed05f028 | |||
| 8953023b90 | |||
| dc76fe719a | |||
| f0cca1fe0d | |||
| 203ffb0134 | |||
| 7879d2a670 | |||
| fe2185a811 | |||
| 8a64c6a70d | |||
| ded974b394 | |||
| 51fded0d7b | |||
| fe8baff2a9 | |||
| 080e1e17f5 | |||
| 59c98d8b51 | |||
| 813d6ff832 | |||
| 7ce63bad73 | |||
| f56e4187ad | |||
| eda40f2fc7 | |||
| 975ddf31eb | |||
| c1d5ceb4a2 | |||
| 55fb800e23 | |||
| ca5a1f8e56 | |||
| 68adc083d3 | |||
| 7b1d1d7c6c | |||
| 4ebe396530 | |||
| a900fac83a | |||
| 3298670908 | |||
| 31a91aa341 | |||
| 4593c9d4d7 | |||
| 5e195ed437 |
@@ -1,6 +0,0 @@
|
|||||||
# Paths
|
|
||||||
APPDATA_PATH=/home/username/appdata
|
|
||||||
|
|
||||||
# Ports
|
|
||||||
DNS_PORT=53
|
|
||||||
ADMIN_PORT=
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
# Environment Variables
|
|
||||||
JWT_SECRET=
|
|
||||||
TOKEN_EXPIRY=
|
|
||||||
ALLOW_NEW_ACCOUNTS=
|
|
||||||
DEBUG=
|
|
||||||
DISABLE_ACCOUNTS=
|
|
||||||
DISABLE_INTERNAL_ACCOUNTS=
|
|
||||||
OIDC_ENABLED=
|
|
||||||
|
|
||||||
# Paths
|
|
||||||
APPDATA_PATH=/home/username/appdata
|
|
||||||
|
|
||||||
# Ports
|
|
||||||
PORT=
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
services:
|
|
||||||
caddy:
|
|
||||||
image: docker.io/ryuupendragon/caddy-cloudflare-ddns:2.10.0
|
|
||||||
container_name: caddy
|
|
||||||
cap_add:
|
|
||||||
- NET_ADMIN
|
|
||||||
environment:
|
|
||||||
- CLOUDFLARE_API_TOKEN=${CLOUDFLARE_API_TOKEN}
|
|
||||||
volumes:
|
|
||||||
- ${APPDATA_PATH}/caddy/caddy-file:/etc/caddy
|
|
||||||
- ${APPDATA_PATH}/caddy/caddy-config:/config
|
|
||||||
- ${APPDATA_PATH}/caddy/caddy-data:/data
|
|
||||||
- ${APPDATA_PATH}/caddy/caddy-logs:/logs
|
|
||||||
- ${APPDATA_PATH}/caddy/caddy-srv:/srv
|
|
||||||
ports:
|
|
||||||
- ${HTTP_PORT}:80
|
|
||||||
- ${HTTPS_PORT}:443
|
|
||||||
- ${HTTPS_PORT}:443/udp
|
|
||||||
networks:
|
|
||||||
- frontend
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
networks:
|
|
||||||
frontend:
|
|
||||||
external: true
|
|
||||||
@@ -1,44 +0,0 @@
|
|||||||
services:
|
|
||||||
forgejo_db:
|
|
||||||
image: docker.io/library/mariadb:11.7.2
|
|
||||||
container_name: forgejo_db
|
|
||||||
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW --innodb-file-per-table=1 --skip-innodb-read-only-compressed
|
|
||||||
environment:
|
|
||||||
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
|
|
||||||
- MYSQL_USER=${MYSQL_USER}
|
|
||||||
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
|
|
||||||
- MYSQL_DATABASE=${MYSQL_DATABASE}
|
|
||||||
volumes:
|
|
||||||
- ${APPDATA_PATH}/forgejo/db:/var/lib/mysql
|
|
||||||
ports:
|
|
||||||
- ${DB_PORT}:3306
|
|
||||||
restart: unless-stopped
|
|
||||||
healthcheck:
|
|
||||||
test: ["CMD", "healthcheck.sh", "--connect", "--innodb_initialized"]
|
|
||||||
start_period: 10s
|
|
||||||
interval: 10s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 3
|
|
||||||
|
|
||||||
forgejo_server:
|
|
||||||
image: codeberg.org/forgejo/forgejo:11.0.1-rootless
|
|
||||||
container_name: forgejo_server
|
|
||||||
depends_on:
|
|
||||||
forgejo_db:
|
|
||||||
condition: service_healthy
|
|
||||||
user: ${PUID}:${PGID}
|
|
||||||
environment:
|
|
||||||
- FORGEJO__database__DB_TYPE=mysql
|
|
||||||
- FORGEJO__database__HOST=forgejo_db
|
|
||||||
- FORGEJO__database__NAME=${MYSQL_DATABASE}
|
|
||||||
- FORGEJO__database__USER=${MYSQL_USER}
|
|
||||||
- FORGEJO__database__PASSWD=${MYSQL_PASSWORD}
|
|
||||||
volumes:
|
|
||||||
- ${APPDATA_PATH}/forgejo/config:/etc/gitea
|
|
||||||
- ${APPDATA_PATH}/forgejo/data:/var/lib/gitea
|
|
||||||
- /etc/timezone:/etc/timezone:ro
|
|
||||||
- /etc/localtime:/etc/localtime:ro
|
|
||||||
ports:
|
|
||||||
- ${SERVER_PORT}:3000
|
|
||||||
- ${SSH_PORT}:22
|
|
||||||
restart: unless-stopped
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
services:
|
services:
|
||||||
backrest:
|
backrest:
|
||||||
container_name: 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
|
restart: unless-stopped
|
||||||
hostname: ${HOSTNAME}
|
hostname: ${HOSTNAME}
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
44
dockhand/compose.yaml
Normal file
44
dockhand/compose.yaml
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
services:
|
||||||
|
dockhand_db:
|
||||||
|
container_name: dockhand_db
|
||||||
|
image: docker.io/library/postgres:18.2@sha256:9b5bd946f3a507db72c55959700e517463e8d5dbb6f7eb30d920d5bcf6951431
|
||||||
|
restart: unless-stopped
|
||||||
|
environment:
|
||||||
|
- POSTGRES_USER=${POSTGRES_USER}
|
||||||
|
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
||||||
|
- POSTGRES_DB=${POSTGRES_DB}
|
||||||
|
- PGDATA=/var/lib/postgresql/18/docker
|
||||||
|
volumes:
|
||||||
|
- ./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
|
||||||
|
|
||||||
|
dockhand:
|
||||||
|
container_name: dockhand
|
||||||
|
image: fnsys/dockhand:v1.0.18@sha256:81ee6728840ea99978d811d9dfa61e5445467e01502320fa7733bcf7e567d105
|
||||||
|
restart: unless-stopped
|
||||||
|
depends_on:
|
||||||
|
dockhand_db:
|
||||||
|
condition: service_healthy
|
||||||
|
environment:
|
||||||
|
- DATABASE_URL=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@dockhand_db:5432/${POSTGRES_DB}
|
||||||
|
volumes:
|
||||||
|
- ./data:/app/data
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
ports:
|
||||||
|
- 3000:3000
|
||||||
|
networks:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
|
||||||
|
networks:
|
||||||
|
frontend:
|
||||||
|
external: true
|
||||||
|
backend:
|
||||||
|
external: true
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
services:
|
services:
|
||||||
gitea_runner:
|
gitea_runner:
|
||||||
container_name: gitea_runner
|
container_name: gitea_runner
|
||||||
image: docker.io/gitea/act_runner:0.2.13@sha256:8477d5b61b655caad4449888bae39f1f34bebd27db56cb15a62dccb3dcf3a944
|
image: docker.io/gitea/act_runner:0.3.0@sha256:8368754bb612a1deb07ed604e3b955338aefc01576d4d0d92e8dd82f29250fcd
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
CONFIG_FILE: /config.yml
|
CONFIG_FILE: /config.yml
|
||||||
@@ -12,3 +12,5 @@ services:
|
|||||||
- ./config.yml:/config.yml
|
- ./config.yml:/config.yml
|
||||||
- ./data:/data
|
- ./data:/data
|
||||||
- /var/run/docker.sock:/var/run/docker.sock
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
ports:
|
||||||
|
- ${PORT}:${PORT}
|
||||||
@@ -32,31 +32,40 @@ runner:
|
|||||||
fetch_timeout: 5s
|
fetch_timeout: 5s
|
||||||
# The interval for fetching the job from the Gitea instance.
|
# The interval for fetching the job from the Gitea instance.
|
||||||
fetch_interval: 2s
|
fetch_interval: 2s
|
||||||
|
# The github_mirror of a runner is used to specify the mirror address of the github that pulls the action repository.
|
||||||
|
# It works when something like `uses: actions/checkout@v4` is used and DEFAULT_ACTIONS_URL is set to github,
|
||||||
|
# and github_mirror is not empty. In this case,
|
||||||
|
# it replaces https://github.com with the value here, which is useful for some special network environments.
|
||||||
|
github_mirror: ''
|
||||||
# The labels of a runner are used to determine which jobs the runner can run, and how to run them.
|
# The labels of a runner are used to determine which jobs the runner can run, and how to run them.
|
||||||
# Like: "macos-arm64:host" or "ubuntu-latest:docker://docker.gitea.com/runner-images:ubuntu-latest"
|
# Like: "macos-arm64:host" or "ubuntu-latest:docker://docker.gitea.com/runner-images:ubuntu-latest"
|
||||||
# Find more images provided by Gitea at https://gitea.com/docker.gitea.com/runner-images .
|
# Find more images provided by Gitea at https://gitea.com/docker.gitea.com/runner-images .
|
||||||
# If it's empty when registering, it will ask for inputting labels.
|
# If it's empty when registering, it will ask for inputting labels.
|
||||||
# If it's empty when execute `daemon`, will use labels in `.runner` file.
|
# If it's empty when execute `daemon`, will use labels in `.runner` file.
|
||||||
labels:
|
labels:
|
||||||
- "ubuntu-latest:docker://docker.gitea.com/runner-images:ubuntu-latest"
|
- "ubuntu-latest:docker://ghcr.io/catthehacker/ubuntu:act-24.04"
|
||||||
- "ubuntu-arm64:docker://docker.gitea.com/runner-images:ubuntu-latest"
|
- "ubuntu-latest-full:docker://ghcr.io/catthehacker/ubuntu:full-24.04"
|
||||||
- "ubuntu-22.04:docker://docker.gitea.com/runner-images:ubuntu-22.04"
|
- "ubuntu-arm64:docker://ghcr.io/catthehacker/ubuntu:act-24.04"
|
||||||
- "ubuntu-cat:docker://ghcr.io/catthehacker/ubuntu:act-latest"
|
- "ubuntu-arm64-full:docker://ghcr.io/catthehacker/ubuntu:full-24.04"
|
||||||
- "bookworm:docker://node:20-bookworm"
|
- "ubuntu-22.04:docker://ghcr.io/catthehacker/ubuntu:act-22.04"
|
||||||
- "bookworm-slim:docker://node:24-bookworm-slim"
|
- "ubuntu-22.04-full:docker://ghcr.io/catthehacker/ubuntu:full-22.04"
|
||||||
- "bullseye:docker://node:20-bullseye"
|
- "trixie:docker://node:25-trixie"
|
||||||
- "bullseye-slim:docker://node:20-bullseye-slim"
|
- "trixie-slim:docker://node:25-trixie-slim"
|
||||||
|
- "bookworm:docker://node:25-bookworm"
|
||||||
|
- "bookworm-slim:docker://node:25-bookworm-slim"
|
||||||
|
- "bullseye:docker://node:25-bullseye"
|
||||||
|
- "bullseye-slim:docker://node:25-bullseye-slim"
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
# Enable cache server to use actions/cache.
|
# Enable cache server to use actions/cache.
|
||||||
enabled: false
|
enabled: true
|
||||||
# The directory to store the cache data.
|
# The directory to store the cache data.
|
||||||
# If it's empty, the cache data will be stored in $HOME/.cache/actcache.
|
# If it's empty, the cache data will be stored in $HOME/.cache/actcache.
|
||||||
dir: ""
|
dir: ""
|
||||||
# The host of the cache server.
|
# The host of the cache server.
|
||||||
# It's not for the address to listen, but the address to connect from job containers.
|
# It's not for the address to listen, but the address to connect from job containers.
|
||||||
# So 0.0.0.0 is a bad choice, leave it empty to detect automatically.
|
# So 0.0.0.0 is a bad choice, leave it empty to detect automatically.
|
||||||
host: ""
|
host: "IP"
|
||||||
# The port of the cache server.
|
# The port of the cache server.
|
||||||
# 0 means to use a random available port.
|
# 0 means to use a random available port.
|
||||||
port: 0
|
port: 0
|
||||||
@@ -99,6 +108,10 @@ container:
|
|||||||
force_pull: true
|
force_pull: true
|
||||||
# Rebuild docker image(s) even if already present
|
# Rebuild docker image(s) even if already present
|
||||||
force_rebuild: false
|
force_rebuild: false
|
||||||
|
# Always require a reachable docker daemon, even if not required by act_runner
|
||||||
|
require_docker: false
|
||||||
|
# Timeout to wait for the docker daemon to be reachable, if docker is required by require_docker or act_runner
|
||||||
|
docker_timeout: 0s
|
||||||
|
|
||||||
host:
|
host:
|
||||||
# The parent directory of a job's working directory.
|
# The parent directory of a job's working directory.
|
||||||
|
|||||||
@@ -1,42 +0,0 @@
|
|||||||
services:
|
|
||||||
gitea_runner1:
|
|
||||||
container_name: gitea_runner1
|
|
||||||
image: docker.io/gitea/act_runner:0.2.13@sha256:8477d5b61b655caad4449888bae39f1f34bebd27db56cb15a62dccb3dcf3a944
|
|
||||||
restart: unless-stopped
|
|
||||||
environment:
|
|
||||||
CONFIG_FILE: /config.yml
|
|
||||||
GITEA_INSTANCE_URL: "${INSTANCE_URL}"
|
|
||||||
GITEA_RUNNER_REGISTRATION_TOKEN: "${REGISTRATION_TOKEN}"
|
|
||||||
GITEA_RUNNER_NAME: "${RUNNER_NAME1}"
|
|
||||||
volumes:
|
|
||||||
- ./config.yml:/config.yml
|
|
||||||
- ./data1:/data
|
|
||||||
- /var/run/docker.sock:/var/run/docker.sock
|
|
||||||
|
|
||||||
gitea_runner2:
|
|
||||||
container_name: gitea_runner2
|
|
||||||
image: docker.io/gitea/act_runner:0.2.13@sha256:8477d5b61b655caad4449888bae39f1f34bebd27db56cb15a62dccb3dcf3a944
|
|
||||||
restart: unless-stopped
|
|
||||||
environment:
|
|
||||||
CONFIG_FILE: /config.yml
|
|
||||||
GITEA_INSTANCE_URL: "${INSTANCE_URL}"
|
|
||||||
GITEA_RUNNER_REGISTRATION_TOKEN: "${REGISTRATION_TOKEN}"
|
|
||||||
GITEA_RUNNER_NAME: "${RUNNER_NAME2}"
|
|
||||||
volumes:
|
|
||||||
- ./config.yml:/config.yml
|
|
||||||
- ./data2:/data
|
|
||||||
- /var/run/docker.sock:/var/run/docker.sock
|
|
||||||
|
|
||||||
gitea_runner3:
|
|
||||||
container_name: gitea_runner3
|
|
||||||
image: docker.io/gitea/act_runner:0.2.13@sha256:8477d5b61b655caad4449888bae39f1f34bebd27db56cb15a62dccb3dcf3a944
|
|
||||||
restart: unless-stopped
|
|
||||||
environment:
|
|
||||||
CONFIG_FILE: /config.yml
|
|
||||||
GITEA_INSTANCE_URL: "${INSTANCE_URL}"
|
|
||||||
GITEA_RUNNER_REGISTRATION_TOKEN: "${REGISTRATION_TOKEN}"
|
|
||||||
GITEA_RUNNER_NAME: "${RUNNER_NAME3}"
|
|
||||||
volumes:
|
|
||||||
- ./config.yml:/config.yml
|
|
||||||
- ./data3:/data
|
|
||||||
- /var/run/docker.sock:/var/run/docker.sock
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
services:
|
services:
|
||||||
gotify:
|
gotify:
|
||||||
container_name: gotify
|
container_name: gotify
|
||||||
image: ghcr.io/gotify/server:2.8.0@sha256:4702c392ca723d5016fc938c8b22572c3509efca812bdc5221d25158ba0201e3
|
image: ghcr.io/gotify/server:2.9.1@sha256:a3af47067ce6aad76aadf5ba32d6ddfecd1ae576a961359f039fd1831e8b7652
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
- TZ=${TZ}
|
- TZ=${TZ}
|
||||||
34
handbrake/compose.yaml
Normal file
34
handbrake/compose.yaml
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
services:
|
||||||
|
handbrake:
|
||||||
|
container_name: handbrake
|
||||||
|
image: ghcr.io/jlesage/handbrake:v26.02.2
|
||||||
|
restart: unless-stopped
|
||||||
|
deploy:
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
cpus: '${CPU_LIMIT}'
|
||||||
|
environment:
|
||||||
|
- USER_ID=${USER_ID}
|
||||||
|
- GROUP_ID=${GROUP_ID}
|
||||||
|
- UMASK=${UMASK}
|
||||||
|
- TZ=${TZ}
|
||||||
|
- DISPLAY_WIDTH=${DISPLAY_WIDTH}
|
||||||
|
- DISPLAY_HEIGHT=${DISPLAY_HEIGHT}
|
||||||
|
- DARK_MODE=${DARK_MODE}
|
||||||
|
- WEB_AUDIO=${WEB_AUDIO}
|
||||||
|
- HANDBRAKE_GUI=${HANDBRAKE_GUI}
|
||||||
|
- AUTOMATED_CONVERSION=${AUTOMATED_CONVERSION}
|
||||||
|
volumes:
|
||||||
|
- ${APPDATA_PATH}/handbrake/config:/config
|
||||||
|
- ${DATA_PATH}:/storage:ro
|
||||||
|
- ${APPDATA_PATH}/handbrake/watch:/watch
|
||||||
|
- ${APPDATA_PATH}/handbrake/output:/output
|
||||||
|
- ${APPDATA_PATH}/handbrake/trash:/trash
|
||||||
|
ports:
|
||||||
|
- ${PORT}:5800
|
||||||
|
networks:
|
||||||
|
- frontend
|
||||||
|
|
||||||
|
networks:
|
||||||
|
frontend:
|
||||||
|
external: true
|
||||||
19
hawser/compose.yaml
Normal file
19
hawser/compose.yaml
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
services:
|
||||||
|
hawser:
|
||||||
|
container_name: hawser
|
||||||
|
image: ghcr.io/finsys/hawser:0.2.29@sha256:b6f8eabb5e839a1950fae5302db5a96e98dbe63e928e8178c3ca682aed008e26
|
||||||
|
restart: unless-stopped
|
||||||
|
environment:
|
||||||
|
- TOKEN=${TOKEN}
|
||||||
|
- LOG_LEVEL=${LOG_LEVEL}
|
||||||
|
volumes:
|
||||||
|
- ./stacks:/data/stacks
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
ports:
|
||||||
|
- 2376:2376
|
||||||
|
networks:
|
||||||
|
- frontend
|
||||||
|
|
||||||
|
networks:
|
||||||
|
frontend:
|
||||||
|
external: true
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
services:
|
services:
|
||||||
healthchecks:
|
healthchecks:
|
||||||
container_name: healthchecks
|
container_name: healthchecks
|
||||||
image: ghcr.io/linuxserver/healthchecks:4.0.20260209@sha256:5c3b3eab2287ad7816733a24ab041f27c16a7503ead3fa39c134d88ef7dbe9a5
|
image: ghcr.io/linuxserver/healthchecks:4.0.20260216@sha256:9748ad5de1a8aaede64e54d742424f2e8a92ed661814c232b333e567de40d829
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
- PUID=${PUID}
|
- PUID=${PUID}
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
services:
|
services:
|
||||||
home-assistant:
|
home-assistant:
|
||||||
container_name: home-assistant
|
container_name: home-assistant
|
||||||
image: ghcr.io/home-assistant/home-assistant:2026.1.3@sha256:c36741490472518338323db8ee67775d7df70d2fa1f68eff9b9e63679fe64a18
|
image: ghcr.io/home-assistant/home-assistant:2026.2.3@sha256:96fa92d83fa8dae987fbbbcf58b1fea1140985ff6a8517b37f7b65c76ef20133
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- ${APPDATA_PATH}/home-assistant/config:/config
|
- ${APPDATA_PATH}/home-assistant/config:/config
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
services:
|
services:
|
||||||
homepage_socket_proxy:
|
homepage_socket_proxy:
|
||||||
container_name: homepage_socket_proxy
|
container_name: homepage_socket_proxy
|
||||||
image: ghcr.io/11notes/socket-proxy:2.1.6@sha256:2f4e605a5441b31389a95ef942af45927e8df4df4e974cfa271a388799d4f87b
|
image: ghcr.io/11notes/socket-proxy:2.1.7@sha256:6806f9b3cfe64325ae2dc967381412e415d868c9542753962fd2e73f4f9686f1
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
read_only: true
|
read_only: true
|
||||||
user: ${SOCKET_UID}:${SOCKET_GID}
|
user: ${SOCKET_UID}:${SOCKET_GID}
|
||||||
@@ -15,7 +15,7 @@ services:
|
|||||||
|
|
||||||
homepage:
|
homepage:
|
||||||
container_name: homepage
|
container_name: homepage
|
||||||
image: ghcr.io/gethomepage/homepage:v1.9.0@sha256:7fa7b07a26bd8d90a44bb975c6455b10d8dee467ce674b040750ffb4a0f486d6
|
image: ghcr.io/gethomepage/homepage:v1.10.1@sha256:0b596092c0b55fe4c65379a428a3fe90bd192f10d1b07d189a34fe5fabe7eedb
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
depends_on:
|
depends_on:
|
||||||
homepage_socket_proxy:
|
homepage_socket_proxy:
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
services:
|
services:
|
||||||
homepage:
|
homepage:
|
||||||
container_name: homepage
|
container_name: homepage
|
||||||
image: ghcr.io/gethomepage/homepage:v1.9.0@sha256:7fa7b07a26bd8d90a44bb975c6455b10d8dee467ce674b040750ffb4a0f486d6
|
image: ghcr.io/gethomepage/homepage:v1.10.1@sha256:0b596092c0b55fe4c65379a428a3fe90bd192f10d1b07d189a34fe5fabe7eedb
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
- PUID=${PUID}
|
- PUID=${PUID}
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
services:
|
services:
|
||||||
kiwix:
|
kiwix:
|
||||||
container_name: kiwix
|
container_name: kiwix
|
||||||
image: ghcr.io/kiwix/kiwix-serve:3.8.1@sha256:a105ef4c6791741224f0f6883fc391c4fe8bd25307be286e631d0a52e8777ef7
|
image: ghcr.io/kiwix/kiwix-serve:3.8.1@sha256:9bffd4f940645d4d518f137e87b7865d3d0ef30f6c13fbe4a3b9e747be3cd1ad
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
command:
|
command:
|
||||||
- '*.zim'
|
- '*.zim'
|
||||||
volumes:
|
volumes:
|
||||||
- ${APPDATA_PATH}/kiwix/data:/data
|
- ${DATA_PATH}:/data
|
||||||
ports:
|
ports:
|
||||||
- ${PORT}:8080
|
- ${PORT}:8080
|
||||||
networks:
|
networks:
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
services:
|
services:
|
||||||
lldap_db:
|
lldap_db:
|
||||||
container_name: lldap_db
|
container_name: lldap_db
|
||||||
image: docker.io/library/postgres:18.1@sha256:f42fe58fa146f29072559fcb855cc2e93e2c9ab08c1cbe7c5db4973d665e3d86
|
image: docker.io/library/postgres:18.2@sha256:9b5bd946f3a507db72c55959700e517463e8d5dbb6f7eb30d920d5bcf6951431
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
- POSTGRES_USER=${POSTGRES_USER}
|
- POSTGRES_USER=${POSTGRES_USER}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
services:
|
services:
|
||||||
pocket-id-db:
|
pocket-id-db:
|
||||||
container_name: pocket-id-db
|
container_name: pocket-id-db
|
||||||
image: docker.io/library/postgres:18.1@sha256:f42fe58fa146f29072559fcb855cc2e93e2c9ab08c1cbe7c5db4973d665e3d86
|
image: docker.io/library/postgres:18.2@sha256:9b5bd946f3a507db72c55959700e517463e8d5dbb6f7eb30d920d5bcf6951431
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
- POSTGRES_USER=${POSTGRES_USER}
|
- POSTGRES_USER=${POSTGRES_USER}
|
||||||
@@ -21,7 +21,7 @@ services:
|
|||||||
|
|
||||||
pocket-id:
|
pocket-id:
|
||||||
container_name: 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
|
restart: unless-stopped
|
||||||
depends_on:
|
depends_on:
|
||||||
pocket-id-db:
|
pocket-id-db:
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
"labels": ["renovate"],
|
"labels": ["renovate"],
|
||||||
"configMigration": true,
|
"configMigration": true,
|
||||||
"prHourlyLimit": 0,
|
"prHourlyLimit": 0,
|
||||||
|
"prConcurrentLimit": 0,
|
||||||
"ignorePaths": [".archived/", "**/node_modules/**", "**/vendor/**"],
|
"ignorePaths": [".archived/", "**/node_modules/**", "**/vendor/**"],
|
||||||
"docker-compose": {
|
"docker-compose": {
|
||||||
"hostRules": [
|
"hostRules": [
|
||||||
|
|||||||
17
selfhst-icons/compose.yaml
Normal file
17
selfhst-icons/compose.yaml
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
services:
|
||||||
|
selfhst-icons:
|
||||||
|
container_name: selfhst-icons
|
||||||
|
image: ghcr.io/selfhst/icons:3.2.0@sha256:3a6db28194ac905f9cfa8529b2abf7a3c21b688c5515b47c4a28ae49c16fa0fc
|
||||||
|
restart: unless-stopped
|
||||||
|
environment:
|
||||||
|
- ICON_SOURCE=remote
|
||||||
|
- REMOTE_URL=${REMOTE_URL}
|
||||||
|
- STANDARD_ICON_FORMAT=${STANDARD_ICON_FORMAT}
|
||||||
|
ports:
|
||||||
|
- 4050:4050
|
||||||
|
networks:
|
||||||
|
- frontend
|
||||||
|
|
||||||
|
networks:
|
||||||
|
frontend:
|
||||||
|
external: true
|
||||||
27
syncthing/compose.yaml
Normal file
27
syncthing/compose.yaml
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
services:
|
||||||
|
syncthing:
|
||||||
|
container_name: syncthing
|
||||||
|
image: ghcr.io/syncthing/syncthing:2.0.14
|
||||||
|
restart: unless-stopped
|
||||||
|
hostname: ${HOSTNAME}
|
||||||
|
environment:
|
||||||
|
- PUID=${PUID}
|
||||||
|
- PGID=${PGID}
|
||||||
|
volumes:
|
||||||
|
- ${APPDATA_PATH}/syncthing/data:/var/syncthing
|
||||||
|
ports:
|
||||||
|
- 8384:8384 # Web UI
|
||||||
|
- 22000:22000/tcp # TCP file transfers
|
||||||
|
- 22000:22000/udp # QUIC file transfers
|
||||||
|
- 21027:21027/udp # Local discovery broadcasts
|
||||||
|
healthcheck:
|
||||||
|
test: curl -fkLsS -m 2 127.0.0.1:8384/rest/noauth/health | grep -o --color=never OK || exit 1
|
||||||
|
interval: 1m
|
||||||
|
timeout: 10s
|
||||||
|
retries: 3
|
||||||
|
networks:
|
||||||
|
- frontend
|
||||||
|
|
||||||
|
networks:
|
||||||
|
frontend:
|
||||||
|
external: true
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
services:
|
services:
|
||||||
uptime-kuma:
|
uptime-kuma:
|
||||||
container_name: uptime-kuma
|
container_name: uptime-kuma
|
||||||
image: ghcr.io/louislam/uptime-kuma:2.0.2@sha256:4c364ef96aaddac7ec4c85f5e5f31c3394d35f631381ccbbf93f18fd26ac7cba
|
image: ghcr.io/louislam/uptime-kuma:2.1.3@sha256:32c352a235fd10f98b3f64a6a4345d3c0c7f4e8be7810d2e1e867f7fe2e48ba2
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- ${APPDATA_PATH}/uptime-kuma/config:/app/data
|
- ${APPDATA_PATH}/uptime-kuma/config:/app/data
|
||||||
Reference in New Issue
Block a user