Skip to content

Commit 253e2cf

Browse files
authored
Volumes must be quoted
1 parent 66a80d8 commit 253e2cf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/app-service/configure-custom-container.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -499,9 +499,9 @@ In your *docker-compose.yml* file, map the `volumes` option to `${WEBAPP_STORAGE
499499
wordpress:
500500
image: <image name:tag>
501501
volumes:
502-
- ${WEBAPP_STORAGE_HOME}/site/wwwroot:/var/www/html
503-
- ${WEBAPP_STORAGE_HOME}/phpmyadmin:/var/www/phpmyadmin
504-
- ${WEBAPP_STORAGE_HOME}/LogFiles:/var/log
502+
- "${WEBAPP_STORAGE_HOME}/site/wwwroot:/var/www/html"
503+
- "${WEBAPP_STORAGE_HOME}/phpmyadmin:/var/www/phpmyadmin"
504+
- "${WEBAPP_STORAGE_HOME}/LogFiles:/var/log"
505505
```
506506
507507
### Preview limitations

0 commit comments

Comments
 (0)