Prefix docker volumes with application names

This is important so that `docker volume ls` gives useful information.
pull/1/head
Tristan Daniël Maat 2020-07-12 18:36:52 +01:00
parent 367579f5cd
commit 3c01b94156
Signed by: tlater
GPG Key ID: 49670FD774E43268
2 changed files with 4 additions and 4 deletions

View File

@ -6,9 +6,9 @@
image = "nextcloud:fpm-alpine";
dependsOn = ["docker-nextcloud-postgres.service"];
volumes = [
"apps:/var/www/html/custom_apps"
"config:/var/www/html/config"
"data:/var/www/html/data"
"nextcloud-apps:/var/www/html/custom_apps"
"nextcloud-config:/var/www/html/config"
"nextcloud-data:/var/www/html/data"
];
environment = {
POSTGRES_DB = "nextcloud";

View File

@ -28,7 +28,7 @@ in
};
};
volumes = [
"mail:/srv/mail"
"tlaternet-mail:/srv/mail"
];
environment = {
VIRTUAL_HOST = "tlater.net,www.tlater.net";