add main server

This commit is contained in:
rebel onion 2025-06-15 14:21:05 -05:00
parent 2f3f0b7820
commit 50124a7efa
18 changed files with 405 additions and 0 deletions

View file

@ -0,0 +1,36 @@
services:
suwayomi:
container_name: suwayomi
image: ghcr.io/suwayomi/tachidesk:preview
environment:
- PUID=1000
- PGID=10000
- TZ=America/Chicago # Use TZ database name from https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
# Comment these out if you do not use the flaresolverr container at the bottom of this file
- FLARESOLVERR_ENABLED=true
- FLARESOLVERR_URL=http://flaresolverr:8191
- BASIC_AUTH_ENABLED=true
- BASIC_AUTH_USERNAME=${BASIC_AUTH_USERNAME}
- BASIC_AUTH_PASSWORD=${BASIC_AUTH_PASSWORD}
# #################################################################################################
#
# !!! IMPORTANT !!!
# - server settings can be changed during runtime in the WebUI
# - providing an environment variable will OVERWRITE the current setting value when starting the container
#
# #################################################################################################
#
# example for setting env vars:
#
# - BIND_IP=0.0.0.0
# - BIND_PORT=4567
# - SOCKS_PROXY_ENABLED=false
# - DOWNLOAD_AS_CBZ=true
# - EXTENSION_REPOS=["http://github.com/orginazation-name/repo-name", "http://github.com/orginazation-name-2/repo-name-2"]
user: "1000:10000"
volumes:
- /mnt/manga:/mnt/manga
- /home/docker/suwayomi:/home/suwayomi/.local/share/Tachidesk
ports:
- "4567:4567"
restart: on-failure:3