-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-sync.yml
54 lines (54 loc) · 1.05 KB
/
docker-sync.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
version: "2"
options:
verbose: true
syncs:
project-sync:
sync_userid: '1000'
sync_strategy: 'native_osx'
host_disk_mount_mode: 'cached'
src: '.'
sync_excludes: [
'.idea',
'.git',
'.platform',
'.travis',
'var/cache',
'var/sessions',
'var/page_cache',
'var/generation',
'var/composer_home',
'var/view_preprocessed',
'var/session',
'var/tmp',
'var/log',
'node_modules',
'phpserver/*',
'docs/*',
'setup/*',
'docker/data/*',
'dev/tests/*',
'generated/*',
'pub/static/*',
'pub/media/*'
]
watch_excludes: [
'.idea',
'.git',
'.travis',
'var/cache',
'var/sessions',
'var/page_cache',
'var/generation',
'var/composer_home',
'var/view_preprocessed',
'var/session',
'var/tmp',
'var/log/system.log',
'var/log/debug.log',
'node_modules',
'generated/*',
'pub/static/*',
'pub/media/*',
'update/*',
'vendor/*'
]