mariadb -> postgres
This commit is contained in:
parent
78983f46d8
commit
9818af04a1
|
@ -30,7 +30,6 @@ in {
|
|||
images = {
|
||||
nextcloud = mkOption { type = str; };
|
||||
postgres = mkOption { type = str; };
|
||||
nginx = mkOption { type = str; };
|
||||
};
|
||||
|
||||
uids = {
|
||||
|
@ -110,7 +109,7 @@ in {
|
|||
nextcloud.service = {
|
||||
image = cfg.images.nextcloud;
|
||||
restart = "always";
|
||||
links = [ "mariadb" ];
|
||||
links = [ "postgres" ];
|
||||
env_file = [ hostSecrets.nextcloudEnv.target-file ];
|
||||
volumes = [
|
||||
"${cfg.state-directory}/nextcloud:/var/www/html"
|
||||
|
|
Loading…
Reference in New Issue