From ef1392b831a2e35f9181f73df8d7f190b9f7776d Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Tue, 20 Dec 2022 08:51:45 +0100 Subject: [PATCH] fix(api): Properly mount static files into the frontend container to serve them Part-of: --- deploy/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/docker-compose.yml b/deploy/docker-compose.yml index df6c2c900..0ecf3c670 100644 --- a/deploy/docker-compose.yml +++ b/deploy/docker-compose.yml @@ -81,7 +81,7 @@ services: - "${MUSIC_DIRECTORY_SERVE_PATH-/srv/funkwhale/data/music}:${MUSIC_DIRECTORY_PATH-/music}:ro" - "${MEDIA_ROOT}:${MEDIA_ROOT}:ro" - - "${STATIC_ROOT}:${STATIC_ROOT}:ro" + - "${STATIC_ROOT}:/usr/share/nginx/html/staticfiles:ro" ports: # override those variables in your .env file if needed - "${FUNKWHALE_API_IP}:${FUNKWHALE_API_PORT}:80"