Skip to content

Commit

Permalink
Resolves shared folder not being mounted into the web container. (#38)
Browse files Browse the repository at this point in the history
* Resolves shared folder not being mounted into the web container.

* Shared was using a named volume, instead of relative path.
  • Loading branch information
pingers authored Jul 18, 2018
1 parent 894b0a0 commit 03d9abf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: '2'
version: '3'
services:
web:
image: uofa/apache2-php7-dev:shepherd
Expand All @@ -24,7 +24,7 @@ services:
SHEPHERD_INSTALL_PROFILE: standard
volumes:
- .:/code
- shared:/shared
- ./shared:/shared
- ${HOST_SSH_AUTH_SOCK_DIR}:/ssh
db:
image: mariadb
Expand Down

0 comments on commit 03d9abf

Please sign in to comment.