Skip to content

default login not working with new deployment, muiltiple retries #478

Answered by eduncan911
straes asked this question in Getting Help
Discussion options

You must be logged in to vote

While I haven't ran into this issue after deleting and reinstalling a few times, one thing I do is always wipe my machine and start over. Usually because there's always a persistent container, volume, or network that just hangs around.

Warning: this will delete all docker items you may have ever installed.

I run them so often, I made an bash alias.

# stop everything from running first
alias docker-clean-everything='\
  docker rm -v $(docker ps -a -q -f status=exited);\
  docker rmi -f $(docker images -q);\
  docker volume rm -f $(docker volume ls | awk "{print $2}");\
  docker network rm $(docker network ls | awk "{print $2}")'

Once this runs, you'll have a clean and empty machine to sta…

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@cimnine
Comment options

@straes
Comment options

Answer selected by straes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
3 participants