olimp/roles/flibusta/templates/docker-compose.yml.j2
Administrator 91f0cf08c7 Update 3 files
- /group_vars/all.yml
- /roles/flibusta/templates/docker-compose.yml.j2
- /roles/flibusta/tasks/main.yml
2025-12-05 11:07:30 +05:00

27 lines
945 B
Django/Jinja
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

services:
flibusta:
image: "{{ flibusta_image }}"
container_name: flibusta
restart: unless-stopped
mem_limit: "2g" # ← жёстко, как у тебя везде (jellyfin/audiobookshelf ~2G)
security_opt:
- no-new-privileges:true
ports:
- "{{ int_ip }}:{{ flibusta_port }}:8080"
environment:
- TZ={{ timezone }}
- WEBDAV_ENABLED={{ flibusta_webdav_enabled | lower }}
- OPDS_ENABLED={{ flibusta_opds_enabled | lower }}
volumes:
- "{{ flibusta_base_dir }}/config:/app/config:rw"
- "{{ flibusta_base_dir }}/data:/app/rw:rw"
- "{{ flibusta_books_dir }}:/books:rw"
{% if flibusta_calibre_integration %}
- "{{ calibre_library_dir }}:/calibre:ro"
{% endif %}
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s