computer-playbook/roles/server_docker-funkwhale/templates/docker-compose.yml.j2

74 lines
1.6 KiB
Plaintext
Raw Normal View History

2022-12-05 17:43:21 +01:00
version: "3"
2022-12-05 20:47:15 +01:00
2022-12-05 17:43:21 +01:00
services:
2022-12-05 20:47:15 +01:00
postgres:
2023-01-09 15:59:36 +01:00
restart: always
2022-12-05 20:47:15 +01:00
env_file: .env
environment:
- "POSTGRES_HOST_AUTH_METHOD=trust"
image: postgres:15-alpine
2022-12-05 17:43:21 +01:00
volumes:
2022-12-05 20:47:15 +01:00
- database:/var/lib/postgresql/data
redis:
2023-01-09 15:59:36 +01:00
restart: always
2022-12-05 20:47:15 +01:00
env_file: .env
image: redis:7-alpine
volumes:
- redis:/data
celeryworker:
2023-01-09 15:59:36 +01:00
restart: always
2022-12-05 20:47:15 +01:00
image: funkwhale/api:${FUNKWHALE_VERSION:-latest}
depends_on:
- postgres
- redis
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}"
celerybeat:
2023-01-09 15:59:36 +01:00
restart: always
2022-12-05 20:47:15 +01:00
image: funkwhale/api:${FUNKWHALE_VERSION:-latest}
depends_on:
- postgres
- redis
env_file: .env
command: celery -A funkwhale_api.taskapp beat --pidfile= -l INFO
api:
2023-01-09 15:59:36 +01:00
restart: always
2022-12-05 20:47:15 +01:00
image: funkwhale/api:${FUNKWHALE_VERSION:-latest}
depends_on:
- postgres
- redis
env_file: .env
volumes:
- "data:${MEDIA_ROOT}"
#- "${STATIC_ROOT}:${STATIC_ROOT}"
ports:
- "5000"
front:
2023-01-09 15:59:36 +01:00
restart: always
2022-12-05 20:47:15 +01:00
image: funkwhale/front:${FUNKWHALE_VERSION:-latest}
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"
2022-12-05 17:43:21 +01:00
volumes:
2022-12-05 20:47:15 +01:00
data:
redis:
database: