File tree 5 files changed +120
-7
lines changed
5 files changed +120
-7
lines changed Original file line number Diff line number Diff line change 1
- * .DS_Store
2
- .AppleDouble
3
- .LSOverride
1
+ # .gitignore
2
+ # ###########
3
+ node_modules
4
+ .env
4
5
5
- # Icon must end with two \r
6
- Icon
6
+ # Directories
7
+ # ###########
7
8
9
+ # Files
10
+ # ###########
11
+ var-config.sh
12
+
13
+ # Compiled source #
14
+ # ##################
15
+ * .com
16
+ * .class
17
+ * .dll
18
+ * .exe
19
+ * .o
20
+ * .so
21
+
22
+ # Packages #
23
+ # ###########
24
+ # it's better to unpack these files and commit the raw source
25
+ # git has its own built in compression methods
26
+ * .7z
27
+ * .dmg
28
+ * .gz
29
+ * .iso
30
+ * .jar
31
+ * .rar
32
+ * .tar
33
+ * .zip
34
+
35
+ # Logs and databases #
36
+ # #####################
37
+ * .log
38
+ * .sql
39
+ * .sqlite
40
+
41
+ # OS generated files #
42
+ # #####################
43
+ .DS_Store
44
+ .DS_Store ?
45
+ .vscode
46
+ .Trashes
47
+ ehthumbs.db
48
+ Thumbs.db
49
+ .AppleDouble
50
+ .LSOverride
51
+ .metadata_never_index
8
52
9
53
# Thumbnails
54
+ # ###########
10
55
._ *
11
56
57
+ # Icon must end with two \r
58
+ # ##########################
59
+ Icon
60
+
12
61
# Files that might appear in the root of a volume
62
+ # ################################################
13
63
.DocumentRevisions-V100
14
64
.fseventsd
65
+ .dbfseventsd
15
66
.Spotlight-V100
16
67
.TemporaryItems
17
68
.Trashes
69
+ .trash
18
70
.VolumeIcon.icns
19
71
.com.apple.timemachine.donotpresent
72
+ .com.apple.timemachine.supported
73
+ .PKInstallSandboxManager
74
+ .PKInstallSandboxManager-SystemSoftware
75
+ .file
76
+ .hotfiles.btree
77
+ .quota.ops.user
78
+ .quota.user
79
+ .quota.ops.group
80
+ .quota.group
81
+ .vol
82
+ .efi
20
83
21
84
# Directories potentially created on remote AFP share
85
+ # ####################################################
22
86
.AppleDB
23
87
.AppleDesktop
24
88
Network Trash Folder
25
89
Temporary Items
26
90
.apdisk
91
+ .Mobile *
92
+ .disk_ *
93
+
94
+ # Sherlock files
95
+ # ###############
96
+ TheFindByContentFolder
97
+ TheVolumeSettingsFolder
98
+ .FBCIndex
99
+ .FBCSemaphoreFile
100
+ .FBCLockFolder
Original file line number Diff line number Diff line change
1
+ # This is specific to my local set up
2
+ source .env .
3
+
4
+ # Set env_var before running this script:
5
+ # GITHUB_TOKEN="3122133122133211233211233211233211322313123"
6
+
7
+ # vars
8
+ #
9
+ GIT_REPO=" https://github.com/pascalandy/docker-stack-this"
10
+ GOPATH=${HOME} /go
11
+
12
+ # The tag must be ready to push on git remote
13
+ #
14
+ cd ${HOME} /Documents/Github/firepress-org/${my_repo} && \
15
+ git push --tags && \
16
+
17
+ # Find the latest tag
18
+ #
19
+ tag_version=" $(
20
+ git ls-remote --tags ${GIT_REPO} \
21
+ | cut -d$' \t ' -f2 \
22
+ | grep -E ' ^refs/tags/[0-9]+\.[0-9]+' \
23
+ | cut -d/ -f3 \
24
+ | sort -rV \
25
+ | head -n1) " && \
26
+ echo ${tag_version} && \
27
+
28
+ # Push release on GitHub like a boss
29
+ # Requires: https://github.com/aktau/github-release
30
+ #
31
+ $GOPATH /bin/github-release release \
32
+ --user firepress-org \
33
+ --repo ${my_repo} \
34
+ --tag ${tag_version} \
35
+ --name ${tag_version} \
36
+ --description " Refer to [CHANGELOG.md](https://github.com/pascalandy/docker-stack-this/blob/master/CHANGELOG.md) for all details about this release."
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ cd "$ENV_MONOREPO" && \
28
28
29
29
```
30
30
echo "CONFIGURE ENV_VAR" && \
31
- ENV_EDGE_BRANCH="1.56 ";
31
+ ENV_EDGE_BRANCH="2.01 ";
32
32
ENV_MONOREPO="traefik_stack5";
33
33
34
34
echo "Setup the stack" && \
Original file line number Diff line number Diff line change
1
+ #
2
+ # ACTIVELY TESTING IT
3
+ #
1
4
# this traefik reverse proxy has a bunch of features:
2
5
# - reverse proxy all 80/443 ingress traffic on a swarm
3
6
# - dynamic config via each app's swarm service labels
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ services:
46
46
47
47
traefik :
48
48
<< : *default-opts
49
- image : traefik:1.7.8 -alpine
49
+ image : traefik:1.7.9 -alpine
50
50
ports :
51
51
- target : 80
52
52
protocol : tcp
You can’t perform that action at this time.
0 commit comments