update compose file and homepage configs
This commit is contained in:
parent
4c1b99f45c
commit
d6e1648c1a
5 changed files with 180 additions and 34 deletions
|
@ -44,11 +44,13 @@ services:
|
|||
- TZ=Etc/UTC
|
||||
- AUTO_UPDATE=true #optional
|
||||
- RUN_OPTS= #optional
|
||||
|
||||
volumes:
|
||||
- /home/guts/docker:/config
|
||||
- /media/Torrents:/downloads
|
||||
ports:
|
||||
- 9117:9117
|
||||
|
||||
restart: always
|
||||
|
||||
flaresolverr:
|
||||
|
@ -120,6 +122,19 @@ services:
|
|||
- "5335:5335/tcp"
|
||||
- "5335:5335/udp"
|
||||
restart: unless-stopped
|
||||
dockerproxy:
|
||||
image: ghcr.io/tecnativa/docker-socket-proxy:latest
|
||||
container_name: dockerproxy
|
||||
environment:
|
||||
- CONTAINERS=1 # Allow access to viewing containers
|
||||
- SERVICES=1 # Allow access to viewing services (necessary when using Docker Swarm)
|
||||
- TASKS=1 # Allow access to viewing tasks (necessary when using Docker Swarm)
|
||||
- POST=0 # Disallow any POST operations (effectively read-only)
|
||||
ports:
|
||||
- 127.0.0.1:2375:2375
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock:ro # Mounted as read-only
|
||||
restart: unless-stopped
|
||||
homepage:
|
||||
image: ghcr.io/gethomepage/homepage:latest
|
||||
container_name: homepage
|
||||
|
@ -127,10 +142,8 @@ services:
|
|||
- 3000:3000
|
||||
volumes:
|
||||
- /home/guts/docker/homepage:/app/config # Make sure your local config directory exists
|
||||
- /home/guts/Pictures/homepage:/app/public/images
|
||||
- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations
|
||||
environment:
|
||||
HOMEPAGE_ALLOWED_HOSTS: 10.0.0.121:3000
|
||||
- /home/guts/docker/homepage/images:/app/public/images
|
||||
env_file: ".env"
|
||||
metube:
|
||||
image: ghcr.io/alexta69/metube
|
||||
container_name: metube
|
||||
|
@ -155,3 +168,115 @@ services:
|
|||
- SPEEDTEST_SERVERS=26513
|
||||
volumes:
|
||||
- /home/guts/docker/speedtest-tracker:/config
|
||||
kavita:
|
||||
image: lscr.io/linuxserver/kavita:latest
|
||||
container_name: kavita
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Etc/UTC
|
||||
volumes:
|
||||
- /home/guts/docker/kavita:/config
|
||||
- /media/network/kavita:/data
|
||||
ports:
|
||||
- 5000:5000
|
||||
restart: unless-stopped
|
||||
redis:
|
||||
container_name: redis
|
||||
image: docker.io/valkey/valkey:8-alpine
|
||||
command: valkey-server --save 30 1 --loglevel warning
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- /home/guts/docker/valkey:/data
|
||||
cap_drop:
|
||||
- ALL
|
||||
cap_add:
|
||||
- SETGID
|
||||
- SETUID
|
||||
- DAC_OVERRIDE
|
||||
logging:
|
||||
driver: "json-file"
|
||||
options:
|
||||
max-size: "1m"
|
||||
max-file: "1"
|
||||
searxng:
|
||||
container_name: searxng
|
||||
image: docker.io/searxng/searxng:latest
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "8686:8080"
|
||||
volumes:
|
||||
- /home/guts/docker/searxng:/etc/searxng:rw
|
||||
environment:
|
||||
- SEARXNG_BASE_URL=http://${SEARXNG_HOSTNAME:-localhost}/
|
||||
- UWSGI_WORKERS=${SEARXNG_UWSGI_WORKERS:-4}
|
||||
- UWSGI_THREADS=${SEARXNG_UWSGI_THREADS:-4}
|
||||
cap_drop:
|
||||
- ALL
|
||||
cap_add:
|
||||
- CHOWN
|
||||
- SETGID
|
||||
- SETUID
|
||||
logging:
|
||||
driver: "json-file"
|
||||
options:
|
||||
max-size: "1m"
|
||||
max-file: "1"
|
||||
forgejo:
|
||||
image: codeberg.org/forgejo/forgejo:11
|
||||
container_name: forgejo
|
||||
environment:
|
||||
- USER_UID=1000
|
||||
- USER_GID=1000
|
||||
restart: always
|
||||
volumes:
|
||||
- /home/guts/docker/forgejo/data:/data
|
||||
- /home/guts/docker/forgejo/timezone:/etc/timezone:ro
|
||||
- /home/guts/docker/forgejo/localtime:/etc/localtime:ro
|
||||
ports:
|
||||
- '3005:3000'
|
||||
- '222:22'
|
||||
freshrss:
|
||||
image: freshrss/freshrss:latest
|
||||
container_name: freshrss
|
||||
hostname: freshrss
|
||||
restart: unless-stopped
|
||||
logging:
|
||||
options:
|
||||
max-size: 10m
|
||||
volumes:
|
||||
- /var/www/freshrss/data:/var/www/FreshRSS/data
|
||||
- /var/www/freshrss/extensions:/var/www/FreshRSS/extensions
|
||||
ports:
|
||||
- "8787:80"
|
||||
environment:
|
||||
TZ: America/Santo_Domingo
|
||||
db:
|
||||
image: mariadb:10.11
|
||||
restart: always
|
||||
command: --transaction-isolation=READ-COMMITTED
|
||||
volumes:
|
||||
- /var/lib/mysql/mariadb:/var/lib/mysql
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
|
||||
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
|
||||
- MYSQL_DATABASE=nextcloud
|
||||
- MYSQL_USER=nextcloud
|
||||
redis-nc:
|
||||
image: redis:alpine
|
||||
restart: always
|
||||
app:
|
||||
image: nextcloud
|
||||
restart: always
|
||||
ports:
|
||||
- 8985:80
|
||||
depends_on:
|
||||
- redis-nc
|
||||
- db
|
||||
volumes:
|
||||
- /var/www/nextcloud:/var/www/html
|
||||
environment:
|
||||
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
|
||||
- MYSQL_DATABASE=nextcloud
|
||||
- MYSQL_USER=nextcloud
|
||||
- MYSQL_HOST=db
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue