Merge pull request #37 from nextcloud/save-configuration-file-never-in-container

make sure that the configuration file gets stored on the volume
This commit is contained in:
szaimen 2021-12-03 15:34:16 +01:00 committed by GitHub
commit de61270ac3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,7 +29,9 @@ RUN curl "https://caddyserver.com/api/download?os=linux&arch=amd64" -o "/usr/bin
RUN cd /var/www/docker-aio; \
git clone https://github.com/nextcloud/all-in-one.git .; \
chmod 770 -R ./; \
chown www-data:www-data -R ./
chown www-data:www-data -R ./; \
rm -r ./php/data; \
rm -r ./php/session
RUN mkdir -p /etc/apache2/certs && \
cd /etc/apache2/certs && \