-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Put the config files in /etc #7
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are going to break a lot of projects, if you do that. Just use the env vars in your docker-compose if you don't like the location.
I just add a backward compatible symbolic link |
server/Dockerfile
Outdated
@@ -40,7 +40,9 @@ RUN a2enmod fcgid headers && \ | |||
mkdir -p /var/www/plugins && \ | |||
chown www-data: /var/www/.qgis3 && \ | |||
mknod /var/log/docker p && \ | |||
chown www-data: /var/log/docker | |||
chown www-data: /var/log/docker && \ | |||
ls --symbolic /project /etc/qgisserver |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/ls/ln/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oups, Thanks :-)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed :-)
acceptance_tests/config/Dockerfile
Outdated
COPY db /docker-entrypoint-initdb.d | ||
|
||
VOLUME /project | ||
VOLUME /etc/qgisserver |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd rather have this file left untouched to be sure we stay backward compatible.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just done :-)
…backward compatible
No description provided.