Resetting Database when changed Enviroment Variables #1133
-
First Check
Commit to Help
Example Code
DescriptionHey Community, in my first deployment i setup First Super User with a username not a Email-Adress - so i am not able to login into the deployment. Is there a way to reset the whole application without reinstalling the server? Operating SystemLinux Operating System DetailsUbuntu with Docker Engine and Github Agent Python Versionlatest Additional ContextNo response |
Beta Was this translation helpful? Give feedback.
Answered by
YuriiMotov
Sep 8, 2025
Replies: 1 comment
-
You can just remove the volume of DB.
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
YuriiMotov
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can just remove the volume of DB.
docker compose down
command.docker volume ls
command to get the list of volumes.{project-name}_app-db-data
(where{project-name}
is the name of your project).docker volume rm {project-name}_app-db-data
to remove the volume.