Files
docker-tachidesk/compose.yml
2022-12-02 08:20:01 +05:30

31 lines
881 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 # ( dont change, require uid to be 1000 )
- PGID=1000 # ( dont change, require gid to be 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