Created
February 5, 2018 18:50
-
-
Save normanlolx/5d27bd6f0f0b08b13e58baa4bcd866ae to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
web: | |
image: php:7.0-apache | |
volumes: | |
- /var/www/myapp | |
restart: always | |
bg-sync: | |
image: cweagans/bg-sync | |
volumes: | |
- .:/source | |
volumes_from: | |
- web | |
environment: | |
- SYNC_DESTINATION=/var/www/myapp | |
- SYNC_MAX_INOTIFY_WATCHES=40000 | |
- SYNC_VERBOSE=1 | |
- SYNC_PREFER=newer | |
privileged: true | |
restart: always | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment