diff --git a/deploy/docker-compose.yml b/deploy/docker-compose.yml
index 1a1b81b39fd3ca99b05413d870d03806120aef39..fadf73d7f23adf76f0477ec8c34ea074433a1c42 100644
--- a/deploy/docker-compose.yml
+++ b/deploy/docker-compose.yml
@@ -46,6 +46,7 @@ services:
       - ./data/music:/music:ro
       - ./data/media:/app/funkwhale_api/media
       - ./data/static:/app/staticfiles
+      - ./front/dist:/frontend
     ports:
       - "${FUNKWHALE_API_IP:-127.0.0.1}:${FUNKWHALE_API_PORT:-5000}:5000"
     links:
diff --git a/docs/installation/docker.rst b/docs/installation/docker.rst
index 9f7a288f3783a804a69f7ff25cae790b3b6f34a5..76958fb0bfeb04be5469fde0d73130ece09e9cee 100644
--- a/docs/installation/docker.rst
+++ b/docs/installation/docker.rst
@@ -46,7 +46,7 @@ Then launch the whole thing:
 
     docker-compose up -d
 
-Now, you just need to setup the :ref:`frontend files <frontend-setup>`, and configure your :ref:`reverse-proxy <reverse-proxy-setup>`. Don't worry, it's quite easy.
+Now, you just need to configure your :ref:`reverse-proxy <reverse-proxy-setup>`. Don't worry, it's quite easy.
 
 About music acquisition
 -----------------------
diff --git a/docs/installation/index.rst b/docs/installation/index.rst
index 33ac3bb755098da824ea6876431a43f95d7c85e4..1544dfbf0986a017c54e21e1de7031cf5390f6d3 100644
--- a/docs/installation/index.rst
+++ b/docs/installation/index.rst
@@ -26,6 +26,11 @@ Available installation methods
 Frontend setup
 ---------------
 
+.. note::
+
+    You do not need to do this if you are deploying using Docker, as frontend files
+    are already included in the funkwhale docker image.
+
 Files for the web frontend are purely static and can simply be downloaded, unzipped and served from any webserver:
 
 .. code-block:: bash