home-docker/main-docker/suwayomi/compose.yaml
2025-06-21 09:25:50 -05:00

36 lines
1.4 KiB
YAML

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://byparr: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