diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2018-02-21 20:44:41 +0100 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2018-02-21 20:44:41 +0100 |
commit | 0f86d4f7d5b0bb2c64d8adefa4dd93a2a5506c11 (patch) | |
tree | b0cc55b472874a4ec13b71c9e3f784031aa905ea /adei/Dockerfile | |
parent | 350abf69de17b079c7589022bb0b2df01a51f84e (diff) | |
download | adei-0f86d4f7d5b0bb2c64d8adefa4dd93a2a5506c11.tar.gz adei-0f86d4f7d5b0bb2c64d8adefa4dd93a2a5506c11.tar.bz2 adei-0f86d4f7d5b0bb2c64d8adefa4dd93a2a5506c11.tar.xz adei-0f86d4f7d5b0bb2c64d8adefa4dd93a2a5506c11.zip |
Allow container to run in unpriviledged mode
Diffstat (limited to 'adei/Dockerfile')
-rw-r--r-- | adei/Dockerfile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/adei/Dockerfile b/adei/Dockerfile index ab38acf..523e3c5 100644 --- a/adei/Dockerfile +++ b/adei/Dockerfile @@ -18,6 +18,7 @@ RUN zypper ar http://download.opensuse.org/repositories/home:/csa7fff:/adei/open zypper -n in make java && \ zypper -n in adei adei-config-default adei-req-mssql adei-webroot +VOLUME /var/run VOLUME /var/log/apache2 VOLUME /var/spool/mail @@ -40,8 +41,11 @@ RUN rm -rf /srv/www/htdocs/adei && \ ln -s /adei/src /srv/www/htdocs/adei RUN ln -sf /etc/mime.types /etc/apache2/mime.types && \ + find /etc/apache2 -type d -exec chmod +rx '{}' \; && \ + chmod -R +r /etc/apache2 && \ mv /etc/apache2 /opt/ && \ - ln -s /adei/ovr/apache2 /etc/apache2 + ln -s /adei/ovr/apache2 /etc/apache2 && \ + chmod +x /usr/sbin/start_apache2 ENV MYSQL_SERVER adei-mysql ENV MYSQL_PORT 3306 |