From 7b7583dfe65767b9b39dee33ce862ad42184bfdb Mon Sep 17 00:00:00 2001 From: CampaniaGuy Date: Tue, 7 May 2024 10:03:34 +0200 Subject: [PATCH] Docs improvement --- docs/deploy/docker.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/deploy/docker.md b/docs/deploy/docker.md index 27cd7510..e0291e20 100644 --- a/docs/deploy/docker.md +++ b/docs/deploy/docker.md @@ -27,7 +27,8 @@ services: volumes: - umap_userdata:/srv/umap/uploads # FIX the path on the left, below, to your location - # OPTIONAL, you can comment the line below out + # OPTIONAL, you can comment the line below out for default + # values to apply - /home/ubuntu/umap.conf:/etc/umap/umap.conf restart: always depends_on: @@ -44,4 +45,7 @@ Note that you’ll have to set a [`SECRET_KEY`](https://docs.djangoproject.com/e $ python3 -c 'import secrets; print(secrets.token_hex(100))' ``` -User accounts can be managed via the Django admin page ({SITE_URL}/admin). The required superuser must be created on the container command line with this command: umap createsuperuser. +User accounts can be managed via the Django admin page ({SITE_URL}/admin). The required superuser must be created on the container command line with this command: +```bash +umap createsuperuser +```