84 lines
2.8 KiB
Plaintext
Raw Normal View History

2022-12-05 17:43:21 +01:00
services:
2022-12-05 20:47:15 +01:00
{% include 'templates/docker/services/' + database_type + '.yml.j2' %}
2024-01-19 15:12:18 +01:00
{% include 'templates/docker/services/redis.yml.j2' %}
2023-12-26 16:40:19 +01:00
2022-12-05 20:47:15 +01:00
celeryworker:
# Celery workers handle background tasks (such file imports or federation
# messaging). The more processes a worker gets, the more tasks
# can be processed in parallel. However, more processes also means
# a bigger memory footprint.
# By default, a worker will span a number of process equal to your number
# of CPUs. You can adjust this, by explicitly setting the --concurrency
# flag:
# celery -A funkwhale_api.taskapp worker -l INFO --concurrency=4
restart: {{docker_restart_policy}}
2025-02-03 11:44:13 +01:00
image: funkwhale/api:${applications.funkwhale.version:-latest}
2022-12-05 20:47:15 +01:00
env_file: .env
command: celery -A funkwhale_api.taskapp worker -l INFO --concurrency=${CELERYD_CONCURRENCY-0}
environment:
- C_FORCE_ROOT=true
volumes:
- "data:${MEDIA_ROOT}"
- "music:${MUSIC_DIRECTORY_PATH}:ro"
2024-01-19 15:12:18 +01:00
{% include 'templates/docker/container/depends-on-database-redis.yml.j2' %}
{% include 'templates/docker/container/networks.yml.j2' %}
2022-12-05 20:47:15 +01:00
celerybeat:
restart: {{docker_restart_policy}}
2025-02-03 11:44:13 +01:00
image: funkwhale/api:${applications.funkwhale.version:-latest}
2022-12-05 20:47:15 +01:00
env_file: .env
command: celery -A funkwhale_api.taskapp beat --pidfile= -l INFO
2024-01-19 15:12:18 +01:00
{% include 'templates/docker/container/depends-on-database-redis.yml.j2' %}
{% include 'templates/docker/container/networks.yml.j2' %}
2022-12-05 20:47:15 +01:00
api:
restart: {{docker_restart_policy}}
2025-02-03 11:44:13 +01:00
image: funkwhale/api:${applications.funkwhale.version:-latest}
2022-12-05 20:47:15 +01:00
env_file: .env
volumes:
- "music:${MUSIC_DIRECTORY_PATH}:ro"
2022-12-05 20:47:15 +01:00
- "data:${MEDIA_ROOT}"
- "static_root:${STATIC_ROOT}"
2022-12-05 20:47:15 +01:00
ports:
- "5000"
2024-01-19 15:12:18 +01:00
{% include 'templates/docker/container/depends-on-database-redis.yml.j2' %}
{% include 'templates/docker/container/networks.yml.j2' %}
2022-12-05 20:47:15 +01:00
front:
restart: {{docker_restart_policy}}
2025-02-03 11:44:13 +01:00
image: funkwhale/front:${applications.funkwhale.version:-latest}
2022-12-05 20:47:15 +01:00
depends_on:
- api
env_file:
- .env
environment:
# Override those variables in your .env file if needed
- "NGINX_MAX_BODY_SIZE=${NGINX_MAX_BODY_SIZE-100M}"
volumes:
- "data:${MEDIA_ROOT}:ro"
#- "${STATIC_ROOT}:${STATIC_ROOT}:ro"
2022-12-05 17:43:21 +01:00
ports:
2022-12-05 20:47:15 +01:00
# override those variables in your .env file if needed
- "${FUNKWHALE_API_IP}:${FUNKWHALE_API_PORT}:80"
2024-01-19 15:12:18 +01:00
{% include 'templates/docker/container/networks.yml.j2' %}
typesense:
restart: {{docker_restart_policy}}
env_file:
- .env
image: typesense/typesense:0.24.0
volumes:
- ./typesense/data:/data
command: --data-dir /data --enable-cors
profiles:
- typesense
2024-01-19 15:12:18 +01:00
{% include 'templates/docker/compose/volumes.yml.j2' %}
2022-12-05 20:47:15 +01:00
data:
static_root:
2022-12-05 20:47:15 +01:00
redis:
music:
2024-01-19 15:12:18 +01:00
{% include 'templates/docker/compose/networks.yml.j2' %}