docker
docker copied to clipboard
recreate docker containers result in relation oc_appconfig not found error
I tried some research, it seems volumes and containers are linked together. so if my process is
docker-compose down
docker-compose up -d
docker will remove all containers and result in an internal server error. which is directly caused by database relation oc_appconfig not found error.
I could only use
docker-compose stop
this command won't remove docker containers. I guess it has something to do with container hash, those volumes and containers are connected together.
Originally posted by @pessimo in https://github.com/nextcloud/docker/issues/1727#issuecomment-1169634882