Skip to content

Commit 639050d

Browse files
committed
Update to Traefik 1.7.9
1 parent affcde5 commit 639050d

File tree

5 files changed

+120
-7
lines changed

5 files changed

+120
-7
lines changed

.gitignore

+79-5
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,100 @@
1-
*.DS_Store
2-
.AppleDouble
3-
.LSOverride
1+
# .gitignore
2+
############
3+
node_modules
4+
.env
45

5-
# Icon must end with two \r
6-
Icon
6+
# Directories
7+
############
78

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
852

953
# Thumbnails
54+
############
1055
._*
1156

57+
# Icon must end with two \r
58+
###########################
59+
Icon
60+
1261
# Files that might appear in the root of a volume
62+
#################################################
1363
.DocumentRevisions-V100
1464
.fseventsd
65+
.dbfseventsd
1566
.Spotlight-V100
1667
.TemporaryItems
1768
.Trashes
69+
.trash
1870
.VolumeIcon.icns
1971
.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
2083

2184
# Directories potentially created on remote AFP share
85+
#####################################################
2286
.AppleDB
2387
.AppleDesktop
2488
Network Trash Folder
2589
Temporary Items
2690
.apdisk
91+
.Mobile*
92+
.disk_*
93+
94+
# Sherlock files
95+
################
96+
TheFindByContentFolder
97+
TheVolumeSettingsFolder
98+
.FBCIndex
99+
.FBCSemaphoreFile
100+
.FBCLockFolder

push_release.sh

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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."

traefik_stack5/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ cd "$ENV_MONOREPO" && \
2828

2929
```
3030
echo "CONFIGURE ENV_VAR" && \
31-
ENV_EDGE_BRANCH="1.56";
31+
ENV_EDGE_BRANCH="2.01";
3232
ENV_MONOREPO="traefik_stack5";
3333
3434
echo "Setup the stack" && \

traefik_stack5/toolproxy-global.yml

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#
2+
# ACTIVELY TESTING IT
3+
#
14
# this traefik reverse proxy has a bunch of features:
25
# - reverse proxy all 80/443 ingress traffic on a swarm
36
# - dynamic config via each app's swarm service labels

traefik_stack5/toolproxy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ services:
4646

4747
traefik:
4848
<<: *default-opts
49-
image: traefik:1.7.8-alpine
49+
image: traefik:1.7.9-alpine
5050
ports:
5151
- target: 80
5252
protocol: tcp

0 commit comments

Comments
 (0)