Compare commits
1 Commits
renovate/d
...
cbed02d0cb
| Author | SHA1 | Date | |
|---|---|---|---|
| cbed02d0cb |
6
.archived/adguardhome/.env
Normal file
6
.archived/adguardhome/.env
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# Paths
|
||||||
|
APPDATA_PATH=/home/username/appdata
|
||||||
|
|
||||||
|
# Ports
|
||||||
|
DNS_PORT=53
|
||||||
|
ADMIN_PORT=
|
||||||
14
.archived/bytestash/.env
Normal file
14
.archived/bytestash/.env
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
# 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=
|
||||||
25
.archived/caddy-cloudflare-ddns/docker-compose.yml
Normal file
25
.archived/caddy-cloudflare-ddns/docker-compose.yml
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
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
|
||||||
44
.archived/forgejo/docker-compose.yml
Normal file
44
.archived/forgejo/docker-compose.yml
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
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:
|
||||||
adminer:
|
adminer:
|
||||||
container_name: adminer
|
container_name: adminer
|
||||||
image: docker.io/library/adminer:5.4.2@sha256:8b5b5195c8c75e40ea1d60af5fc93cc7830f7bd5cd74b184e027ff16301a9302
|
image: docker.io/library/adminer:5.4.2@sha256:2fb88b98da9f0ae0157d8fcb73f447a0747b09ee8d2ff8a8e0695b30afed2116
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- ${PORT}:8080
|
- ${PORT}:8080
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
services:
|
services:
|
||||||
backrest:
|
backrest:
|
||||||
container_name: backrest
|
container_name: backrest
|
||||||
image: docker.io/garethgeorge/backrest:v1.12.0@sha256:448fee1cb4cdf3f7d7078078480d38713673924ad415bfdf84bf9e49ff570201
|
image: docker.io/garethgeorge/backrest:v1.11.2@sha256:6ecf25925dafcb6b37ab871d23c1d424a6f5008191a631c0b520641ec22a3f84
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
hostname: ${HOSTNAME}
|
hostname: ${HOSTNAME}
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
services:
|
services:
|
||||||
hawser:
|
hawser:
|
||||||
container_name: hawser
|
container_name: hawserd
|
||||||
image: ghcr.io/finsys/hawser:0.2.29@sha256:b6f8eabb5e839a1950fae5302db5a96e98dbe63e928e8178c3ca682aed008e26
|
image: ghcr.io/finsys/hawser:0.2.29@sha256:b6f8eabb5e839a1950fae5302db5a96e98dbe63e928e8178c3ca682aed008e26
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
|
- AGENT_NAME=${AGENT_NAME}
|
||||||
- TOKEN=${TOKEN}
|
- TOKEN=${TOKEN}
|
||||||
- LOG_LEVEL=${LOG_LEVEL}
|
- LOG_LEVEL=${LOG_LEVEL}
|
||||||
volumes:
|
volumes:
|
||||||
- ./stacks:/data/stacks
|
|
||||||
- /var/run/docker.sock:/var/run/docker.sock
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
ports:
|
ports:
|
||||||
- 2376:2376
|
- 2376:2376
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
services:
|
services:
|
||||||
dockhand_db:
|
dockhand_db:
|
||||||
container_name: dockhand_db
|
container_name: dockhand_db
|
||||||
image: docker.io/library/postgres:18.2@sha256:9b5bd946f3a507db72c55959700e517463e8d5dbb6f7eb30d920d5bcf6951431
|
image: docker.io/library/postgres:18.1@sha256:1090bc3a8ccfb0b55f78a494d76f8d603434f7e4553543d6e807bc7bd6bbd17f
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
- POSTGRES_USER=${POSTGRES_USER}
|
- POSTGRES_USER=${POSTGRES_USER}
|
||||||
@@ -32,40 +32,31 @@ 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://ghcr.io/catthehacker/ubuntu:act-24.04"
|
- "ubuntu-latest:docker://docker.gitea.com/runner-images:ubuntu-latest"
|
||||||
- "ubuntu-latest-full:docker://ghcr.io/catthehacker/ubuntu:full-24.04"
|
- "ubuntu-arm64:docker://docker.gitea.com/runner-images:ubuntu-latest"
|
||||||
- "ubuntu-arm64:docker://ghcr.io/catthehacker/ubuntu:act-24.04"
|
- "ubuntu-22.04:docker://docker.gitea.com/runner-images:ubuntu-22.04"
|
||||||
- "ubuntu-arm64-full:docker://ghcr.io/catthehacker/ubuntu:full-24.04"
|
- "ubuntu-cat:docker://ghcr.io/catthehacker/ubuntu:act-latest"
|
||||||
- "ubuntu-22.04:docker://ghcr.io/catthehacker/ubuntu:act-22.04"
|
- "bookworm:docker://node:20-bookworm"
|
||||||
- "ubuntu-22.04-full:docker://ghcr.io/catthehacker/ubuntu:full-22.04"
|
- "bookworm-slim:docker://node:24-bookworm-slim"
|
||||||
- "trixie:docker://node:25-trixie"
|
- "bullseye:docker://node:20-bullseye"
|
||||||
- "trixie-slim:docker://node:25-trixie-slim"
|
- "bullseye-slim:docker://node:20-bullseye-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: true
|
enabled: false
|
||||||
# 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: "IP"
|
host: ""
|
||||||
# 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
|
||||||
@@ -108,10 +99,6 @@ 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.
|
||||||
|
|||||||
42
gitea-runner/docker-compose-multi.yml
Normal file
42
gitea-runner/docker-compose-multi.yml
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
services:
|
||||||
|
gitea_runner1:
|
||||||
|
container_name: gitea_runner1
|
||||||
|
image: docker.io/gitea/act_runner:0.3.0@sha256:8368754bb612a1deb07ed604e3b955338aefc01576d4d0d92e8dd82f29250fcd
|
||||||
|
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.3.0@sha256:8368754bb612a1deb07ed604e3b955338aefc01576d4d0d92e8dd82f29250fcd
|
||||||
|
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.3.0@sha256:8368754bb612a1deb07ed604e3b955338aefc01576d4d0d92e8dd82f29250fcd
|
||||||
|
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
|
||||||
@@ -12,5 +12,3 @@ 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}
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
services:
|
services:
|
||||||
handbrake:
|
handbrake:
|
||||||
container_name: handbrake
|
container_name: handbrake
|
||||||
image: ghcr.io/jlesage/handbrake:v26.02.2
|
image: ghcr.io/jlesage/handbrake:v26.01.1
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
deploy:
|
deploy:
|
||||||
resources:
|
resources:
|
||||||
@@ -1,56 +0,0 @@
|
|||||||
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
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
services:
|
services:
|
||||||
lldap_db:
|
lldap_db:
|
||||||
container_name: lldap_db
|
container_name: lldap_db
|
||||||
image: docker.io/library/postgres:18.2@sha256:9b5bd946f3a507db72c55959700e517463e8d5dbb6f7eb30d920d5bcf6951431
|
image: docker.io/library/postgres:18.2@sha256:b6b4d0b75c699a2c94dfc5a94fe09f38630f3b67ab0e1653ede1b7ac8e13c197
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
- POSTGRES_USER=${POSTGRES_USER}
|
- POSTGRES_USER=${POSTGRES_USER}
|
||||||
|
|||||||
@@ -1,19 +0,0 @@
|
|||||||
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
|
|
||||||
@@ -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.2@sha256:9b5bd946f3a507db72c55959700e517463e8d5dbb6f7eb30d920d5bcf6951431
|
image: docker.io/library/postgres:18.2@sha256:b6b4d0b75c699a2c94dfc5a94fe09f38630f3b67ab0e1653ede1b7ac8e13c197
|
||||||
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.3.0-distroless@sha256:85a7485108325e34679b0fbca0baeb8418401f6d6cf59944d50f3ec013aafd09
|
image: ghcr.io/pocket-id/pocket-id:v2.2.0-distroless@sha256:ad2d21a7b31d6b4f1d999caec794a5b5edeb97fc40801947158d62befd4203e3
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
depends_on:
|
depends_on:
|
||||||
pocket-id-db:
|
pocket-id-db:
|
||||||
|
|||||||
@@ -1,17 +0,0 @@
|
|||||||
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
|
|
||||||
Reference in New Issue
Block a user