Set new nextcloud/gitea database volumes

This changed because of a migration from postgresql 12 -> 13. Future
versions should probably be named with the database version appended,
rather than "new", but for now this is how the system is set up.
This commit is contained in:
Tristan Daniël Maat 2021-01-19 01:00:31 +00:00
parent d8b479ddf7
commit ce1a3fc3c1
Signed by: tlater
GPG key ID: 49670FD774E43268
2 changed files with 2 additions and 2 deletions

View file

@ -41,7 +41,7 @@
POSTGRES_PASSWORD = "/qNDDK9WCMuubfA7D8DFwfl9T+Gy2IMDvPhiNpcxZjY="; POSTGRES_PASSWORD = "/qNDDK9WCMuubfA7D8DFwfl9T+Gy2IMDvPhiNpcxZjY=";
}; };
volumes = [ volumes = [
"gitea-db-data:/var/lib/postgresql/data" "gitea-db-data-new:/var/lib/postgresql/data"
]; ];
networks = [ networks = [
"gitea" "gitea"

View file

@ -66,7 +66,7 @@
POSTGRES_PASSWORD = "rI7t7Nek1yGA9ucrRc7Uhy0jcjwPjnXa8me4o8tJON8="; POSTGRES_PASSWORD = "rI7t7Nek1yGA9ucrRc7Uhy0jcjwPjnXa8me4o8tJON8=";
}; };
volumes = [ volumes = [
"nextcloud-db-data:/var/lib/postgresql/data" "nextcloud-db-data-new:/var/lib/postgresql/data"
]; ];
networks = [ networks = [
"nextcloud" "nextcloud"