diff --git a/images/docker-healthchecks.md b/images/docker-healthchecks.md index da27044de..1cdbb740f 100644 --- a/images/docker-healthchecks.md +++ b/images/docker-healthchecks.md @@ -46,6 +46,8 @@ docker create \ -e EMAIL_HOST_PASSWORD= \ -e EMAIL_USE_TLS= \ -e ALLOWED_HOSTS= \ + -e SUPERUSER_EMAIL= \ + -e SUPERUSER_PASSWORD= \ -p 8000:8000 \ -v :/config \ --restart unless-stopped \ @@ -76,6 +78,8 @@ services: - EMAIL_HOST_PASSWORD= - EMAIL_USE_TLS= - ALLOWED_HOSTS= + - SUPERUSER_EMAIL= + - SUPERUSER_PASSWORD= volumes: - :/config ports: @@ -109,6 +113,8 @@ Docker images are configured using parameters passed at runtime (such as those a | `EMAIL_HOST_PASSWORD=` | SMTP password | | `EMAIL_USE_TLS=` | Use TLS for SMTP | | `ALLOWED_HOSTS=` | array of valid hostnames for the server ["test.com","test2.com"] | +| `SUPERUSER_EMAIL=` | Superuser emai | +| `SUPERUSER_PASSWORD=` | Superuser password | ### Volume Mappings (`-v`) @@ -150,6 +156,7 @@ Access the WebUI at :8000. For more information, check out [Healthcheck ## Versions +* **23.10.19:** - Allow to create superuser * **12.04.19:** - Rebase to Alpine 3.9. * **23.03.19:** - Switching to new Base images, shift to arm32v7 tag. * **14.02.19:** - Adding mysql libs needed for using a database.