You've already forked network-tools
Compare commits
51 Commits
v0.1.0
...
74ce9b82b4
Author | SHA1 | Date | |
---|---|---|---|
74ce9b82b4 | |||
c039f7b5c3 | |||
d7972ed1ff | |||
69ae062415 | |||
aa2b077af1 | |||
9e1366b6f8 | |||
879fc0d196 | |||
ee40306fb7
|
|||
a833ef8833 | |||
a20801bb87
|
|||
4f4b86e816
|
|||
6d4c1f6344 | |||
5ab211e067
|
|||
12f2424bb5 | |||
54f71d9ed7 | |||
f330a16c0a
|
|||
ebdf65d313
|
|||
cd39f8192f
|
|||
0f5dc5b903 | |||
481e1a9feb | |||
d453c03331 | |||
418a48faf7 | |||
f32d55e159 | |||
ddc77ce6e7 | |||
756648de8f | |||
419dcc7ef4 | |||
6b70268436
|
|||
f6d81edf30
|
|||
27f0484122 | |||
8774ff7a2a | |||
add96a8308 | |||
f6b0db1ab8 | |||
11f944ffa5
|
|||
dd01190751
|
|||
0735e96913
|
|||
bf78871aea
|
|||
f63389ac04
|
|||
3ff4747896 | |||
102390a79f | |||
fbca3c03ee | |||
0e6c19c4c0 | |||
aba1081455 | |||
f483aad5aa | |||
49e7b2f36f | |||
cfb484270d | |||
82073fa180 | |||
eff0d2c0c9
|
|||
b858b9a4be
|
|||
b96135d216 | |||
89939dcbce
|
|||
9e8776d1c7
|
884
.drone.yml
884
.drone.yml
File diff suppressed because it is too large
Load Diff
@ -1,4 +1,4 @@
|
||||
FROM docker.io/library/alpine:3.14.2
|
||||
FROM docker.io/library/alpine:3.18.3
|
||||
|
||||
RUN apk add bind-tools curl iputils
|
||||
|
||||
|
2
Makefile
2
Makefile
@ -1,7 +1,7 @@
|
||||
# CONTAINER_RUNTIME
|
||||
# The CONTAINER_RUNTIME variable will be used to specified the path to a
|
||||
# container runtime. This is needed to start and run a container image.
|
||||
CONTAINER_RUNTIME?=$(shell which docker)
|
||||
CONTAINER_RUNTIME?=$(shell which podman)
|
||||
|
||||
# NETWORKTOOLS_IMAGE_REGISTRY_NAME
|
||||
# Defines the name of the new container to be built using several variables.
|
||||
|
@ -1,4 +1,4 @@
|
||||
image: volkerraschek/network-tools:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
|
||||
image: git.cryptic.systems/volker.raschek/network-tools:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
|
||||
{{#if build.tags}}
|
||||
tags:
|
||||
{{#each build.tags}}
|
||||
@ -7,14 +7,17 @@ tags:
|
||||
- "latest"
|
||||
{{/if}}
|
||||
manifests:
|
||||
-
|
||||
image: volkerraschek/network-tools:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-amd64
|
||||
- image: git.cryptic.systems/volker.raschek/network-tools:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-amd64
|
||||
platform:
|
||||
architecture: amd64
|
||||
os: linux
|
||||
-
|
||||
image: volkerraschek/network-tools:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-armv7
|
||||
- image: git.cryptic.systems/volker.raschek/network-tools:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-arm-v7
|
||||
platform:
|
||||
architecture: arm
|
||||
os: linux
|
||||
variant: v7
|
||||
variant: v7
|
||||
- image: git.cryptic.systems/volker.raschek/network-tools:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-arm64-v8
|
||||
platform:
|
||||
architecture: arm64
|
||||
os: linux
|
||||
variant: v8
|
25
renovate.json
Normal file
25
renovate.json
Normal file
@ -0,0 +1,25 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"assignees": [ "volker.raschek" ],
|
||||
"automergeStrategy": "merge-commit",
|
||||
"automergeType": "pr",
|
||||
"labels": [ "renovate" ],
|
||||
"packageRules": [
|
||||
{
|
||||
"addLabels": [ "renovate/droneci", "renovate/automerge" ],
|
||||
"automerge": true,
|
||||
"matchManagers": "droneci",
|
||||
"matchUpdateTypes": [ "minor", "patch"]
|
||||
},
|
||||
{
|
||||
"description": "Automatically update patch version of used container images in docker files",
|
||||
"addLabels": [ "renovate/container-image", "renovate/automerge" ],
|
||||
"automerge": true,
|
||||
"matchBaseBranches": [ "master" ],
|
||||
"matchManagers": [ "dockerfile" ],
|
||||
"matchUpdateTypes": [ "patch" ]
|
||||
}
|
||||
],
|
||||
"rebaseLabel": "renovate/rebase",
|
||||
"rebaseWhen": "behind-base-branch"
|
||||
}
|
Reference in New Issue
Block a user