Skip to content
This repository was archived by the owner on Mar 15, 2019. It is now read-only.

Commit 86e4e22

Browse files
author
Julien Neuhart
committed
fixing read only error on Toolbox and PHP-FPM mounted volumes
1 parent 6195e63 commit 86e4e22

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.docker/docker-compose-toolbox.blueprint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ services:
3232
{{- if eq "true" .EnvFiles.Kickoff.ENABLE_DOCKER_SYNC }}
3333
- {{ .EnvFiles.Kickoff.ENV }}{{ .Values.Kickoff.project.name }}_sync_app:/var/www/html:nocopy
3434
{{- else }}
35-
- ../app:/var/www/html:{{ if eq "darwin" .Os }}cached{{ else }}ro{{ end }}
35+
- ../app:/var/www/html:{{ if eq "darwin" .Os }}cached{{ else }}rw{{ end }}
3636
{{- end }}
3737
- ./toolbox/conf.d/memory-limit.ini:/usr/local/etc/php/conf.d/memory-limit.ini:ro
3838
- ./toolbox/generated:/generated:rw

.docker/docker-compose.blueprint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ services:
5050
{{- if eq "true" .EnvFiles.Kickoff.ENABLE_DOCKER_SYNC }}
5151
- {{ .EnvFiles.Kickoff.ENV }}{{ .Values.Kickoff.project.name }}_sync_app:/var/www/html:nocopy
5252
{{- else }}
53-
- ../app:/var/www/html:{{ if eq "darwin" .Os }}cached{{ else }}ro{{ end }}
53+
- ../app:/var/www/html:{{ if eq "darwin" .Os }}cached{{ else }}rw{{ end }}
5454
{{- end }}
5555
- ./php-fpm/docker-entrypoint.sh:/usr/local/bin/docker-entrypoint.sh:ro
5656
- ./php-fpm/conf.d/memory-limit.ini:/usr/local/etc/php/conf.d/memory-limit.ini:ro

0 commit comments

Comments
 (0)