06e93fd7bd
CI build / Validate Gradle Wrapper (push) Successful in 2m30s
CI build / jlink (linux-x64, ubuntu-latest) (push) Failing after 1m12s
CI build / Build Jar (push) Failing after 2m18s
CI build / jlink (macOS-arm64, macos-15) (push) Has been cancelled
CI build / jlink (macOS-x64, macos-15-intel) (push) Has been cancelled
CI build / jlink (windows-x64, windows-latest) (push) Has been cancelled
CI build / Make linux-assets release (push) Has been cancelled
CI build / Make appimage release (push) Has been cancelled
CI build / Make debian-all release (push) Has been cancelled
CI build / Make linux-x64 release (push) Has been cancelled
CI build / Make macOS-arm64 release (push) Has been cancelled
CI build / Make macOS-x64 release (push) Has been cancelled
CI build / Make windows-x64 release (push) Has been cancelled
CI build / release (push) Has been cancelled
43 lines
1.6 KiB
YAML
43 lines
1.6 KiB
YAML
---
|
|
services:
|
|
suwayomi:
|
|
build: .
|
|
platform: linux/amd64
|
|
image: registry.achmad.dev/suwayomi-server:latest
|
|
# user: 1000:1000
|
|
environment:
|
|
- TZ=Etc/UTC # 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
|
|
# #################################################################################################
|
|
#
|
|
# !!! 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
|
|
# - AUTH_MODE=basic_auth
|
|
# - AUTH_USERNAME=manga
|
|
# - AUTH_PASSWORD=hello123
|
|
# - EXTENSION_REPOS=["http://github.com/orginazation-name/repo-name", "http://github.com/orginazation-name-2/repo-name-2"]
|
|
volumes:
|
|
- ./data:/home/suwayomi/.local/share/Tachidesk
|
|
ports:
|
|
- "4567:4567"
|
|
restart: on-failure:3
|
|
|
|
flaresolverr:
|
|
image: ghcr.io/thephaseless/byparr:latest
|
|
container_name: flaresolverr
|
|
init: true
|
|
environment:
|
|
- TZ=Etc/UTC # Use TZ database name from https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
|
restart: unless-stopped |