wi1w

Results 2 comments of wi1w

You can try pass rw permissions to container. ``` webserver: build: context: ./bin/webserver container_name: 'png-webserver' restart: 'always' ports: - "80:80" - "443:443" links: - mysql volumes: - ${DOCUMENT_ROOT-./www}:/var/www/html:rw - ${PHP_INI-./config/php/php.ini}:/usr/local/etc/php/php.ini...

```.env MYSQL_DATABASE=test MYSQL_USER=test MYSQL_PASSWORD=1234234234hgfgh MYSQL_ROOT_PASSWORD=gfdghfghfghgh ``` ```docker-compose.yml version: '3' services: migrate: image: mkbucc/shmig:latest restart: on-failure command: up volumes: - ./migrations:/sql depends_on: - mariadb networks: - backend environment: DATABASE: ${MYSQL_DATABASE} LOGIN:...