I\'m trying to mount a volume in docker-compose to apache image. The problem is, that apache in my docker is run under www-data:www-data but the mounted directo
www-data:www-data
Adding rw to the end of the volume mount worked for me:
services: httpd: image: apache-image ports: - "80:80" volumes: - "./:/var/www/app:rw" links: - redis command: /setupApacheRights.sh