nextcloud: Give nginx access to the nextcloud root
This commit is contained in:
parent
20cda44040
commit
90926e2eee
|
@ -11,6 +11,7 @@
|
||||||
image = "nextcloud:fpm-alpine";
|
image = "nextcloud:fpm-alpine";
|
||||||
dependsOn = [ "postgres" ];
|
dependsOn = [ "postgres" ];
|
||||||
volumes = [
|
volumes = [
|
||||||
|
"nextcloud-root:/var/www/html"
|
||||||
"nextcloud-apps:/var/www/html/custom_apps"
|
"nextcloud-apps:/var/www/html/custom_apps"
|
||||||
"nextcloud-config:/var/www/html/config"
|
"nextcloud-config:/var/www/html/config"
|
||||||
"nextcloud-data:/var/www/html/data"
|
"nextcloud-data:/var/www/html/data"
|
||||||
|
@ -34,8 +35,10 @@
|
||||||
nginx = {
|
nginx = {
|
||||||
image = "nginx:alpine";
|
image = "nginx:alpine";
|
||||||
dependsOn = [ "nextcloud" ];
|
dependsOn = [ "nextcloud" ];
|
||||||
volumes =
|
volumes = [
|
||||||
[ "${./configs/nginx-nextcloud.conf}:/etc/nginx/nginx.conf:ro" ];
|
"nextcloud-root:/var/www/html:ro"
|
||||||
|
"${./configs/nginx-nextcloud.conf}:/etc/nginx/nginx.conf:ro"
|
||||||
|
];
|
||||||
extraOptions = [ "--volumes-from=nextcloud-nextcloud" ];
|
extraOptions = [ "--volumes-from=nextcloud-nextcloud" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue