Skip to content

Commit

Permalink
Merge pull request #90 from eko/upgrade-docker-compose-v3.7
Browse files Browse the repository at this point in the history
Upgrade to docker-compose v3.7
  • Loading branch information
eko committed Oct 5, 2018
2 parents 64bd6ad + 5596f21 commit 9df4b7d
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions docker-compose.yml
@@ -1,4 +1,4 @@
version: '2'
version: '3.7'
services:
db:
image: mysql
Expand Down Expand Up @@ -27,17 +27,16 @@ services:
- "80:80"
links:
- php
volumes_from:
- php
volumes:
- ./logs/nginx/:/var/log/nginx:cached
- ./logs/nginx:/var/log/nginx:cached
- ./symfony:/var/www/symfony:cached
elk:
image: willdurand/elk
ports:
- "81:80"
volumes:
- ./elk/logstash:/etc/logstash:cached
- ./elk/logstash/patterns:/opt/logstash/patterns:cached
volumes_from:
- php
- nginx
- ./logs/symfony:/var/www/symfony/var/logs:cached
- ./logs/nginx:/var/log/nginx:cached

0 comments on commit 9df4b7d

Please sign in to comment.