19 Commits
0.0.2 ... 0.1.0

Author SHA1 Message Date
407b794043 Bump VERSION 2022-10-17 14:53:39 -04:00
35c13a48d3 Merge pull request #6 from loganmarchione/renovate/ubuntu-22.x
Update ubuntu Docker tag to v22
2022-10-17 18:53:07 +00:00
e3612164e3 Merge pull request #5 from loganmarchione/renovate/docker-setup-qemu-action-2.x
Update docker/setup-qemu-action action to v2
2022-10-17 16:07:13 +00:00
e997ba39b8 Merge pull request #4 from loganmarchione/renovate/docker-setup-buildx-action-2.x
Update docker/setup-buildx-action action to v2
2022-10-17 16:04:01 +00:00
be67b46f83 Merge pull request #2 from loganmarchione/renovate/docker-login-action-2.x
Update docker/login-action action to v2
2022-10-17 16:00:35 +00:00
031296c727 Update ubuntu Docker tag to v22 2022-10-17 15:57:40 +00:00
ea6aa6f7fd Update docker/setup-qemu-action action to v2 2022-10-17 15:57:34 +00:00
c012d1f8d8 Update docker/setup-buildx-action action to v2 2022-10-17 15:57:28 +00:00
a75fd490ce Update docker/login-action action to v2 2022-10-17 15:57:24 +00:00
dadfcfa306 Merge pull request #1 from loganmarchione/renovate/docker-build-push-action-3.x
Update docker/build-push-action action to v3
2022-10-17 15:52:56 +00:00
ff4d33d36d Update docker/build-push-action action to v3 2022-10-17 15:46:12 +00:00
688fcb4951 Create renovate.json 2022-10-17 15:45:37 +00:00
f8c6bb98ac Useless change to keep GitHub Actions running 2022-09-05 15:05:36 +00:00
14421c6a7e Update main.yml 2022-07-12 21:51:45 -04:00
b48180621c Delete container_scan.yml 2022-07-12 21:45:20 -04:00
0abfb59001 Update GitHub Actions Checkout to v3 2022-05-24 14:05:03 -04:00
aa91ecf18b Update GitHub Actions Checkout to v3 2022-05-24 14:04:41 -04:00
2f6693f42f Merge branch 'master' of https://github.com/loganmarchione/docker-webdav-nginx 2022-04-16 21:42:58 -04:00
7a2fd629c4 Update README.md 2022-04-16 21:41:36 -04:00
6 changed files with 21 additions and 56 deletions

9
.github/renovate.json vendored Normal file
View File

@ -0,0 +1,9 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"dependencyDashboard": true,
"dependencyDashboardTitle": "Renovate Dashboard",
"labels": ["renovatebot"]
}

View File

@ -1,46 +0,0 @@
name: Container scan on commit to master
on:
push:
branches:
- master
env:
USER: loganmarchione
REPO: docker-webdav-nginx
jobs:
ubuntu_ci:
name: Build and scan
runs-on: ubuntu-latest
steps:
- name: Check out the codebase
uses: actions/checkout@v2
- name: Set variables
run: |
VER=$(cat VERSION)
echo "VERSION=$VER" >> $GITHUB_ENV
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build Docker Image
uses: docker/build-push-action@v2
with:
push: false
context: .
file: Dockerfile
load: true
tags: |
${{ env.USER }}/${{ env.REPO }}:${{ env.VERSION }}
${{ env.USER }}/${{ env.REPO }}:latest
- name: Container scan
uses: azure/container-scan@v0
with:
image-name: ${{ env.USER }}/${{ env.REPO }}:${{ env.VERSION }}
severity-threshold: CRITICAL
run-quality-checks: true

View File

@ -6,6 +6,7 @@ on:
- "[0-9]+.[0-9]+.[0-9]+"
schedule:
- cron: "0 5 * * 0"
workflow_dispatch:
env:
USER: loganmarchione
@ -19,7 +20,7 @@ jobs:
steps:
- name: Check out the codebase
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set variables
run: |
@ -27,10 +28,10 @@ jobs:
echo "VERSION=$VER" >> $GITHUB_ENV
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v2
- name: Build Docker Image
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
push: false
context: .
@ -61,7 +62,7 @@ jobs:
steps:
- name: Check out the codebase
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set variables
run: |
@ -69,20 +70,20 @@ jobs:
echo "VERSION=$VER" >> $GITHUB_ENV
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USER }}
password: ${{ secrets.DOCKER_HUB_PASS }}
logout: true
- name: Build Docker Image
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
push: true
context: .

View File

@ -1,4 +1,4 @@
FROM ubuntu:focal
FROM ubuntu:jammy
ARG BUILD_DATE

View File

@ -9,6 +9,7 @@ Runs a Nginx WebDav server in Docker
- Image base: [Ubuntu](https://hub.docker.com/_/ubuntu)
- Init system: N/A
- Application: [Nginx](https://nginx.org/)
- Architecture: `linux/amd64,linux/arm64,linux/arm/v7`
## Explanation

View File

@ -1 +1 @@
0.0.2
0.1.0