diff --git a/.env.sample b/.env.sample
index b66334cbbc21ef051162014c0d2da32d143deb0b..7af8c01813767a06cc60ddf7ea77f1107757b4a4 100644
--- a/.env.sample
+++ b/.env.sample
@@ -12,7 +12,6 @@ PORT=3000
 # Variable to change
 
 SECRET_ROOT_USER=                       # User as the root admin user
-SECRET_ROOT_PASSWORD=                   # The admin user password (change this after signed in)
 SECRET_ROOT_EMAIL=                      # The email for the admin user
 SECRET_JWT_SECRET=                      # Override this for the secret signin JWT tokens for log in
 
diff --git a/README.md b/README.md
index eb130d1007fbf0cfcf7103b115db062148a9110d..1a206d76f1ad4161461ff9153e7d01c680c0ea57 100644
--- a/README.md
+++ b/README.md
@@ -16,4 +16,6 @@ touch database/hammelig.db
 chown 1000:1000 data/hemmelig database
 
 docker-compose up
+
+# Change password of admin with web app
 ```
diff --git a/docker-compose.yml b/docker-compose.yml
index c954f0b76066b52967cfe0633080039f19ff96f3..2fa63e6e079960a87ccee679c5741bdd168d4d25 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -13,7 +13,6 @@ services:
             - SECRET_PORT=${PORT}
             - SECRET_HOST=${HOST}
             - SECRET_ROOT_USER=${SECRET_ROOT_USER}
-            - SECRET_ROOT_PASSWORD=${SECRET_ROOT_PASSWORD}
             - SECRET_ROOT_EMAIL=${SECRET_ROOT_EMAIL}
             - SECRET_FORCED_LANGUAGE=${SECRET_FORCED_LANGUAGE}
             - SECRET_JWT_SECRET=${SECRET_JWT_SECRET}