Commit d176b9832d52f6cc52a21f6aa0bdaad64ee431e0
1 parent
44078569
Exists in
master
and in
6 other branches
Ajuste no chmod para permissões
Showing
1 changed file
with
2 additions
and
3 deletions
Show diff stats
Dockerfile
... | ... | @@ -3,13 +3,12 @@ RUN mkdir /var/www/i3geo && \ |
3 | 3 | cd /var/www && \ |
4 | 4 | ln -s /tmp/ms_tmp ms_tmp && \ |
5 | 5 | chgrp -R 0 /var/log/apache2 && \ |
6 | - chmod -R g+rwX /var/log/apache2 && \ | |
6 | + chmod -R g+rwX /var/log/apache2 && \ | |
7 | 7 | chgrp -R 0 /var/lock/apache2 && \ |
8 | 8 | chmod -R g+rwX /var/lock/apache2 && \ |
9 | 9 | chgrp -R 0 /var/run/apache2 && \ |
10 | - chmod -R g+rwX /var/run/apache2 && \ | |
10 | + chmod -R g+rwX /var/run/apache2 && \ | |
11 | 11 | chmod -R 555 /var/www && \ |
12 | - # ln -sf /proc/self/fd/1 /var/log/apache2/access.log && \ | |
13 | 12 | ln -sf /proc/self/fd/1 /var/log/apache2/error.log |
14 | 13 | COPY . /var/www/i3geo |
15 | 14 | COPY ./docker/000-default.conf /etc/apache2/sites-available/ | ... | ... |