mirror of
https://github.com/Suwayomi/docker-tachidesk.git
synced 2025-12-10 06:42:12 +01:00
31 lines
797 B
YAML
31 lines
797 B
YAML
---
|
|
version: '3.7'
|
|
|
|
services:
|
|
|
|
tachidesk-docker:
|
|
image: ghcr.io/suwayomi/tachidesk
|
|
container_name: tachidesk-docker
|
|
networks:
|
|
custom_network1:
|
|
ipv4_address: 172.22.2.11
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=< change it to your timezone > # Use TZ database name from https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
|
- LOGGING=file
|
|
volumes:
|
|
- /<path to folder>/docker-config/tachidesk:/home/suwayomi/.local/share/Tachidesk # edit <path to folder> to your mapped folder
|
|
ports:
|
|
- "4567:4567"
|
|
restart: on-failure:3
|
|
|
|
networks:
|
|
custom_network1:
|
|
driver: bridge
|
|
ipam:
|
|
driver: default
|
|
config:
|
|
- subnet: 172.22.2.0/24
|
|
gateway: 172.22.2.1
|