mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 15:35:24 +02:00
* v1.0.0 * v1.0.1 * Update blueprints/seanime/docker-compose.yml Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> * Update blueprints/seanime/docker-compose.yml Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> * Update blueprints/seanime/docker-compose.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * v1.0.2 * Update blueprints/seanime/docker-compose.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * v1.0.4 * v1.0.5 * v1.0.6 --------- Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
26 lines
734 B
YAML
26 lines
734 B
YAML
version: "3.8"
|
|
services:
|
|
seanime-init:
|
|
image: busybox:1.37.0
|
|
user: "0:0"
|
|
volumes:
|
|
- ./seanime-config:/mnt/config
|
|
- ./anime:/mnt/anime
|
|
- ./downloads:/mnt/downloads
|
|
command:
|
|
[ "sh", "-c", "chown -R 1000:1000 /mnt/config && find /mnt/config -type d -exec chmod 755 {} + && find /mnt/config -type f -exec chmod 644 {} +",]
|
|
|
|
seanime:
|
|
image: umagistr/seanime:v3.6.1-rootless
|
|
depends_on:
|
|
seanime-init:
|
|
condition: service_completed_successfully
|
|
environment:
|
|
- SEANIME_SERVER_HOST=0.0.0.0
|
|
expose:
|
|
- "43211"
|
|
volumes:
|
|
- ./seanime-config:/home/seanime/.config/Seanime
|
|
- ./anime:/anime
|
|
- ./downloads:/downloads
|
|
restart: unless-stopped |