Skip to content

Commit

Permalink
add cached parameter for perf improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
schuer committed Apr 16, 2018
1 parent 9fc0733 commit b0bc06e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yml
Expand Up @@ -8,7 +8,7 @@ services:
ports:
- 20080:80 # web server will use port 20080
volumes:
- ./html:/var/www/html # webroot `/var/www/html` will be synced with your local folder `./html`
- ./html:/var/www/html:cached # webroot `/var/www/html` will be synced with your local folder `./html`
depends_on:
- db
- mail
Expand All @@ -27,7 +27,7 @@ services:
ports:
- 23306:3306 # database will use port 23306
volumes:
- ./db:/var/lib/mysql # database in `/var/lib/mysql` will be synced with your local folder `./db`
- ./db:/var/lib/mysql:cached # database in `/var/lib/mysql` will be synced with your local folder `./db`
environment:
MYSQL_DATABASE: redaxo
MYSQL_USER: redaxo
Expand Down

0 comments on commit b0bc06e

Please sign in to comment.