add load: true when autobuilding images and move from /bin/sh to /bin/bash
This commit is contained in:
parent
a1fcbd4b83
commit
6bb6facd88
@ -45,6 +45,7 @@ jobs:
|
|||||||
context: .
|
context: .
|
||||||
file: autoconf/Dockerfile
|
file: autoconf/Dockerfile
|
||||||
platforms: linux/amd64,linux/386,linux/arm/v7,linux/arm64/v8
|
platforms: linux/amd64,linux/386,linux/arm/v7,linux/arm64/v8
|
||||||
|
load: true
|
||||||
push: false
|
push: false
|
||||||
tags: bunkerized-nginx-autoconf
|
tags: bunkerized-nginx-autoconf
|
||||||
cache-from: type=local,src=/tmp/.buildx-cache
|
cache-from: type=local,src=/tmp/.buildx-cache
|
||||||
@ -63,6 +64,7 @@ jobs:
|
|||||||
context: .
|
context: .
|
||||||
file: autoconf/Dockerfile
|
file: autoconf/Dockerfile
|
||||||
platforms: linux/amd64,linux/386,linux/arm/v7,linux/arm64/v8
|
platforms: linux/amd64,linux/386,linux/arm/v7,linux/arm64/v8
|
||||||
|
load: true
|
||||||
push: false
|
push: false
|
||||||
tags: bunkerized-nginx-autoconf
|
tags: bunkerized-nginx-autoconf
|
||||||
cache-to: type=local,dest=/tmp/.buildx-cache-master
|
cache-to: type=local,dest=/tmp/.buildx-cache-master
|
||||||
|
|||||||
@ -45,6 +45,7 @@ jobs:
|
|||||||
context: .
|
context: .
|
||||||
file: ui/Dockerfile
|
file: ui/Dockerfile
|
||||||
platforms: linux/amd64,linux/386,linux/arm/v7,linux/arm64/v8
|
platforms: linux/amd64,linux/386,linux/arm/v7,linux/arm64/v8
|
||||||
|
load: true
|
||||||
push: false
|
push: false
|
||||||
tags: bunkerized-nginx-ui
|
tags: bunkerized-nginx-ui
|
||||||
cache-from: type=local,src=/tmp/.buildx-cache
|
cache-from: type=local,src=/tmp/.buildx-cache
|
||||||
@ -63,6 +64,7 @@ jobs:
|
|||||||
context: .
|
context: .
|
||||||
file: ui/Dockerfile
|
file: ui/Dockerfile
|
||||||
platforms: linux/amd64,linux/386,linux/arm/v7,linux/arm64/v8
|
platforms: linux/amd64,linux/386,linux/arm/v7,linux/arm64/v8
|
||||||
|
load: true
|
||||||
push: false
|
push: false
|
||||||
tags: bunkerized-nginx-ui
|
tags: bunkerized-nginx-ui
|
||||||
cache-to: type=local,dest=/tmp/.buildx-cache-master
|
cache-to: type=local,dest=/tmp/.buildx-cache-master
|
||||||
|
|||||||
2
.github/workflows/build-bunkerized-nginx.yml
vendored
2
.github/workflows/build-bunkerized-nginx.yml
vendored
@ -44,6 +44,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
platforms: linux/amd64,linux/386,linux/arm/v7,linux/arm64/v8
|
platforms: linux/amd64,linux/386,linux/arm/v7,linux/arm64/v8
|
||||||
|
load: true
|
||||||
push: false
|
push: false
|
||||||
tags: bunkerized-nginx
|
tags: bunkerized-nginx
|
||||||
cache-from: type=local,src=/tmp/.buildx-cache
|
cache-from: type=local,src=/tmp/.buildx-cache
|
||||||
@ -61,6 +62,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
platforms: linux/amd64,linux/386,linux/arm/v7,linux/arm64/v8
|
platforms: linux/amd64,linux/386,linux/arm/v7,linux/arm64/v8
|
||||||
|
load: true
|
||||||
push: false
|
push: false
|
||||||
tags: bunkerized-nginx
|
tags: bunkerized-nginx
|
||||||
cache-to: type=local,dest=/tmp/.buildx-cache-master
|
cache-to: type=local,dest=/tmp/.buildx-cache-master
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
|
|
||||||
# load some functions
|
# load some functions
|
||||||
. /opt/bunkerized-nginx/entrypoint/utils.sh
|
. /opt/bunkerized-nginx/entrypoint/utils.sh
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
|
|
||||||
# load some functions
|
# load some functions
|
||||||
. /opt/bunkerized-nginx/entrypoint/utils.sh
|
. /opt/bunkerized-nginx/entrypoint/utils.sh
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
|
|
||||||
# generate certificate
|
# generate certificate
|
||||||
certbot certonly --webroot -w /opt/bunkerized-nginx/acme-challenge -n -d "$1" --email "$2" --agree-tos
|
certbot certonly --webroot -w /opt/bunkerized-nginx/acme-challenge -n -d "$1" --email "$2" --agree-tos
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
|
|
||||||
# load some functions
|
# load some functions
|
||||||
. /opt/bunkerized-nginx/entrypoint/utils.sh
|
. /opt/bunkerized-nginx/entrypoint/utils.sh
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
|
|
||||||
# load some functions
|
# load some functions
|
||||||
. /opt/bunkerized-nginx/entrypoint/utils.sh
|
. /opt/bunkerized-nginx/entrypoint/utils.sh
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
|
|
||||||
# load some functions
|
# load some functions
|
||||||
. /opt/bunkerized-nginx/entrypoint/utils.sh
|
. /opt/bunkerized-nginx/entrypoint/utils.sh
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
|
|
||||||
# load some functions
|
# load some functions
|
||||||
. /opt/bunkerized-nginx/entrypoint/utils.sh
|
. /opt/bunkerized-nginx/entrypoint/utils.sh
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
|
|
||||||
# load some functions
|
# load some functions
|
||||||
. /opt/bunkerized-nginx/entrypoint/utils.sh
|
. /opt/bunkerized-nginx/entrypoint/utils.sh
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
|
|
||||||
# load some functions
|
# load some functions
|
||||||
. /opt/bunkerized-nginx/entrypoint/utils.sh
|
. /opt/bunkerized-nginx/entrypoint/utils.sh
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
|
|
||||||
# load some functions
|
# load some functions
|
||||||
. /opt/bunkerized-nginx/entrypoint/utils.sh
|
. /opt/bunkerized-nginx/entrypoint/utils.sh
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user