Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
byjg committed Aug 21, 2022
1 parent af03325 commit eb5f7e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 20 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ jobs:
id: tags
with:
script: |
tags = "${{ join(steps.meta.outputs.tags, ',') }}"
tags = `${{ join(steps.meta.outputs.tags, ',') }}`
result = []
tags.split(",").forEach(function (item) {
tags.split("\n").forEach(function (item) {
short_tag = item.trim().split(":")[1];
if (short_tag != "latest") {
result.push(short_tag);
Expand Down
17 changes: 0 additions & 17 deletions examples/docker/docker-compose-portainer-app-example.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,3 @@
# To test:
# curl -k -H "Host: host1.local" https://127.0.0.1/
# curl -k -H "Host: host2.local" https://127.0.0.1/
#
# curl -I -H Host:host1.local http://127.0.0.1
# HTTP/1.1 301 Moved Permanently
# content-length: 0
# location: https://host1.local/
#
# curl -I -H Host:host2.local http://127.0.0.1
# HTTP/1.1 301 Moved Permanently
# content-length: 0
# location: https://host1.local/
#
# Test SSL:
# openssl s_client -showcerts -connect 127.0.0.1:443 --servername host1.local

version: "3"

services:
Expand Down
2 changes: 1 addition & 1 deletion examples/docker/docker-compose-portainer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version: "3"

services:
easyhaproxy:
image: byjg/easy-haproxy:master
image: byjg/easy-haproxy
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- certs_letsencrypt:/certs/letsencrypt
Expand Down

0 comments on commit eb5f7e3

Please sign in to comment.