File tree 3 files changed +10
-4
lines changed
3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 7
7
8
8
# Pycharm files
9
9
.idea
10
+
11
+ # Our server secrets
12
+ scratch /secrets
Original file line number Diff line number Diff line change @@ -62,16 +62,18 @@ def pull():
62
62
63
63
def purge_config ():
64
64
# Clear out any existing config
65
+ fabric .api .run ('rm -rf fig' )
66
+ fabric .api .run ('rm -rf scratch/nginxproxy' )
67
+
65
68
fabric .api .run ('mkdir -p fig/' )
66
- fabric .api .run ('rm -rf fig/*' )
67
69
fabric .api .run ('mkdir -p scratch/nginxproxy/' )
68
- fabric .api .run ('rm -rf scratch/nginxproxy/*' )
69
70
70
71
71
72
def purge_secrets ():
72
73
# Clear out any existing secrets
74
+ fabric .api .run ('rm -rf scratch/secrets' )
75
+
73
76
fabric .api .run ('mkdir -p scratch/secrets/' )
74
- fabric .api .run ('rm -rf scratch/secrets/*' )
75
77
76
78
77
79
def push_config ():
Original file line number Diff line number Diff line change @@ -10,10 +10,11 @@ nginxproxy:
10
10
11
11
tractdbcouch :
12
12
# port 5984
13
- build : " fig/tractdbcouch "
13
+ build : " https://github.com/tractdb/docker-tractdb-couch.git "
14
14
volumes :
15
15
- " backup/tractdbcouch/data:/var/lib/couchdb"
16
16
- " backup/tractdbcouch/logs:/var/log/couchdb"
17
+ - " scratch/secrets/tractdbcouch:/secrets"
17
18
18
19
webdub :
19
20
# port 4000
You can’t perform that action at this time.
0 commit comments