Skip to content

Instantly share code, notes, and snippets.

@normanlolx
Created February 5, 2018 18:50
Show Gist options
  • Save normanlolx/5d27bd6f0f0b08b13e58baa4bcd866ae to your computer and use it in GitHub Desktop.
Save normanlolx/5d27bd6f0f0b08b13e58baa4bcd866ae to your computer and use it in GitHub Desktop.
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