forked from samuel-p/connectivity-check
Compare commits
76 commits
Author | SHA1 | Date | |
---|---|---|---|
027f1b1379 | |||
d8a72621b2 | |||
b354f98f9d | |||
138523bd9b | |||
dc40b7c818 | |||
13bfb17d52 | |||
41944321a0 | |||
db8c891cb0 | |||
b4ec95beba | |||
4db00db120 | |||
b314384219 | |||
bc3744924d | |||
1b720f18a4 | |||
2330d35677 | |||
b043e95b41 | |||
d4b14f3b89 | |||
3b88421374 | |||
8b3ed58713 | |||
e37f47ed49 | |||
edb0c478dd | |||
26c555c334 | |||
6efcbd850c | |||
ac164da5ee | |||
0c75266171 | |||
2e131134de | |||
0a1b88b0de | |||
cde3600299 | |||
6fe90e2ad2 | |||
3173ef4cad | |||
66c9fae248 | |||
1195b171f7 | |||
f354670026 | |||
d59a7949a7 | |||
8881734d31 | |||
62512c827b | |||
1fb8bd8eea | |||
1f0c450c4c | |||
a9b8929fbd | |||
f80f4793cd | |||
5cb9b7b0a0 | |||
4ca7fcde55 | |||
3e36176c07 | |||
b1d6179d8b | |||
56c26d5326 | |||
42308672eb | |||
3d8dec4985 | |||
9d3a5f4e2c | |||
0ea80f8479 | |||
c59a8c21c3 | |||
02e2a9ddc5 | |||
03421badb9 | |||
b257fcfef4 | |||
1b7fb0a43a | |||
ba273128b3 | |||
b27b62bfb8 | |||
28d9363bbf | |||
703cd6cb5b | |||
b4fd9604fa | |||
61cb0181ef | |||
b6d7f15c3c | |||
b63ad02710 | |||
edea8024c7 | |||
ff106a6947 | |||
4a3dcbcfcf | |||
4b81cfaf5b | |||
60f242c3cf | |||
d701e2051c | |||
3bbce9c488 | |||
7b7c9c8141 | |||
e4b3948634 | |||
e2f5a4731c | |||
77534f0694 | |||
53b26b7d0f | |||
57d2c8664e | |||
d4e4b44fef | |||
9588514c28 |
4 changed files with 47 additions and 119 deletions
116
.drone.yml
116
.drone.yml
|
@ -1,116 +0,0 @@
|
||||||
kind: pipeline
|
|
||||||
type: docker
|
|
||||||
name: linux-amd64
|
|
||||||
|
|
||||||
platform:
|
|
||||||
os: linux
|
|
||||||
arch: amd64
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: docker
|
|
||||||
image: plugins/docker
|
|
||||||
settings:
|
|
||||||
auto_tag: true
|
|
||||||
auto_tag_suffix: linux-amd64
|
|
||||||
repo: samuelph/connectivity-check
|
|
||||||
username:
|
|
||||||
from_secret: USERNAME
|
|
||||||
password:
|
|
||||||
from_secret: PASSWORD
|
|
||||||
|
|
||||||
trigger:
|
|
||||||
branch:
|
|
||||||
- master
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
|
|
||||||
---
|
|
||||||
kind: pipeline
|
|
||||||
type: docker
|
|
||||||
name: linux-arm64
|
|
||||||
|
|
||||||
platform:
|
|
||||||
os: linux
|
|
||||||
arch: arm64
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: docker
|
|
||||||
image: plugins/docker
|
|
||||||
settings:
|
|
||||||
auto_tag: true
|
|
||||||
auto_tag_suffix: linux-arm64
|
|
||||||
repo: samuelph/connectivity-check
|
|
||||||
username:
|
|
||||||
from_secret: USERNAME
|
|
||||||
password:
|
|
||||||
from_secret: PASSWORD
|
|
||||||
|
|
||||||
trigger:
|
|
||||||
branch:
|
|
||||||
- master
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
|
|
||||||
---
|
|
||||||
kind: pipeline
|
|
||||||
type: docker
|
|
||||||
name: linux-arm
|
|
||||||
|
|
||||||
platform:
|
|
||||||
os: linux
|
|
||||||
arch: arm
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: docker
|
|
||||||
image: plugins/docker
|
|
||||||
settings:
|
|
||||||
auto_tag: true
|
|
||||||
auto_tag_suffix: linux-arm
|
|
||||||
repo: samuelph/connectivity-check
|
|
||||||
username:
|
|
||||||
from_secret: USERNAME
|
|
||||||
password:
|
|
||||||
from_secret: PASSWORD
|
|
||||||
|
|
||||||
trigger:
|
|
||||||
branch:
|
|
||||||
- master
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
|
|
||||||
---
|
|
||||||
kind: pipeline
|
|
||||||
type: docker
|
|
||||||
name: manifest
|
|
||||||
|
|
||||||
platform:
|
|
||||||
os: linux
|
|
||||||
arch: arm64
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: publish
|
|
||||||
image: plugins/manifest
|
|
||||||
settings:
|
|
||||||
auto_tag: true
|
|
||||||
ignore_missing: true
|
|
||||||
target: samuelph/connectivity-check
|
|
||||||
template: samuelph/connectivity-check:OS-ARCH
|
|
||||||
platforms:
|
|
||||||
- linux/amd64
|
|
||||||
- linux/arm64
|
|
||||||
- linux/arm
|
|
||||||
username:
|
|
||||||
from_secret: USERNAME
|
|
||||||
password:
|
|
||||||
from_secret: PASSWORD
|
|
||||||
|
|
||||||
depends_on:
|
|
||||||
- linux-amd64
|
|
||||||
- linux-arm64
|
|
||||||
- linux-arm
|
|
||||||
|
|
||||||
trigger:
|
|
||||||
branch:
|
|
||||||
- master
|
|
||||||
event:
|
|
||||||
- push
|
|
32
.forgejo/workflows/docker.yml
Normal file
32
.forgejo/workflows/docker.yml
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
name: Build and Push Docker image
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
docker:
|
||||||
|
name: Build and Push Docker image
|
||||||
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: ghcr.io/catthehacker/ubuntu:act-latest
|
||||||
|
steps:
|
||||||
|
- name: Login to Docker Hub
|
||||||
|
uses: docker/login-action@v2
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
- name: Login to cr.sp-codes.de
|
||||||
|
uses: docker/login-action@v2
|
||||||
|
with:
|
||||||
|
registry: cr.sp-codes.de
|
||||||
|
username: ${{ secrets.CR_USERNAME }}
|
||||||
|
password: ${{ secrets.CR_TOKEN }}
|
||||||
|
- name: Build and push
|
||||||
|
uses: docker/build-push-action@v4
|
||||||
|
with:
|
||||||
|
push: true
|
||||||
|
tags: |
|
||||||
|
samuelph/connectivity-check:latest
|
||||||
|
cr.sp-codes.de/samuel-p/connectivity-check:latest
|
|
@ -1,3 +1,3 @@
|
||||||
FROM nginx:1.19.9-alpine
|
FROM nginx:1.27.3-alpine@sha256:41523187cf7d7a2f2677a80609d9caa14388bf5c1fbca9c410ba3de602aaaab4
|
||||||
|
|
||||||
COPY nginx.conf /etc/nginx/nginx.conf
|
COPY nginx.conf /etc/nginx/nginx.conf
|
||||||
|
|
|
@ -1,9 +1,21 @@
|
||||||
{
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
"assignees": [
|
"assignees": [
|
||||||
"samuel-p"
|
"samuel-p"
|
||||||
],
|
],
|
||||||
"baseBranches": [
|
"baseBranches": [
|
||||||
"master"
|
"main"
|
||||||
],
|
],
|
||||||
"rangeStrategy": "bump"
|
"rangeStrategy": "bump",
|
||||||
|
"rebaseWhen": "behind-base-branch",
|
||||||
|
"automergeType": "branch",
|
||||||
|
"ignoreTests": true,
|
||||||
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"datasources": [
|
||||||
|
"docker"
|
||||||
|
],
|
||||||
|
"automerge": true
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue