-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-sync-macos.yml
executable file
·53 lines (53 loc) · 1014 Bytes
/
docker-sync-macos.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
version: "2"
options:
verbose: true
syncs:
<project_name>-sync:
sync_userid: '1000'
sync_strategy: 'native_osx'
host_disk_mount_mode: 'cached'
src: './src'
# watch_args: '-v'
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/system.log',
# 'var/log/debug.log',
'node_modules',
'generated/*',
'pub/static/*',
'pub/media/*'
# 'vendor/*'
]
watch_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/system.log',
'var/log/debug.log',
'node_modules',
'generated/*',
'pub/static/*',
'pub/media/*',
'update/*',
'vendor/*'
]