Compare commits
13 Commits
2ba53a33b6
...
v2.0.4
Author | SHA1 | Date | |
---|---|---|---|
fb01815c85 | |||
9c11f1705c | |||
aad30fda0f | |||
3b63958dce | |||
d8a3cba654 | |||
844ac546e5 | |||
f121308163 | |||
581ee0ddf7 | |||
31a1ad4e72 | |||
f8ee0b97d6 | |||
a7a9d8da38 | |||
9f94cce6e1 | |||
f268698aa6 |
48
.drone.yml
48
.drone.yml
@@ -5,9 +5,11 @@ name: linux-amd64
|
||||
platform:
|
||||
os: linux
|
||||
arch: amd64
|
||||
node_selector:
|
||||
kubernetes.io/arch: amd64
|
||||
trigger:
|
||||
event:
|
||||
- push
|
||||
- tag
|
||||
steps:
|
||||
- name: docker
|
||||
image: plugins/docker
|
||||
@@ -20,6 +22,7 @@ steps:
|
||||
repo: bottledpills/deluge-openvpn
|
||||
auto_tag: true
|
||||
auto_tag_suffix: linux-amd64
|
||||
platform: 'linux/amd64'
|
||||
|
||||
---
|
||||
kind: pipeline
|
||||
@@ -28,9 +31,11 @@ name: linux-arm64
|
||||
platform:
|
||||
os: linux
|
||||
arch: arm64
|
||||
node_selector:
|
||||
kubernetes.io/arch: arm64
|
||||
trigger:
|
||||
event:
|
||||
- push
|
||||
- tag
|
||||
steps:
|
||||
- name: docker
|
||||
image: plugins/docker
|
||||
@@ -43,22 +48,51 @@ steps:
|
||||
repo: bottledpills/deluge-openvpn
|
||||
auto_tag: true
|
||||
auto_tag_suffix: linux-arm64
|
||||
platform: 'linux/arm64'
|
||||
|
||||
---
|
||||
kind: pipeline
|
||||
type: kubernetes
|
||||
name: manifest
|
||||
name: manifest-version
|
||||
platform:
|
||||
os: linux
|
||||
arch: amd64
|
||||
arch: arm64
|
||||
node_selector:
|
||||
kubernetes.io/arch: arm64
|
||||
trigger:
|
||||
event:
|
||||
- push
|
||||
- tag
|
||||
steps:
|
||||
- name: manifest
|
||||
- name: manifest-version
|
||||
image: plugins/manifest
|
||||
settings:
|
||||
spec: docker/manifest.tmpl
|
||||
spec: docker/manifest.version.tmpl
|
||||
username:
|
||||
from_secret: docker_username
|
||||
password:
|
||||
from_secret: docker_password
|
||||
auto_tag: true
|
||||
ignore_missing: true
|
||||
depends_on:
|
||||
- linux-amd64
|
||||
- linux-arm64
|
||||
---
|
||||
kind: pipeline
|
||||
type: kubernetes
|
||||
name: manifest-latest
|
||||
platform:
|
||||
os: linux
|
||||
arch: arm64
|
||||
node_selector:
|
||||
kubernetes.io/arch: arm64
|
||||
trigger:
|
||||
event:
|
||||
- tag
|
||||
steps:
|
||||
- name: manifest-latest
|
||||
image: plugins/manifest
|
||||
settings:
|
||||
spec: docker/manifest.latest.tmpl
|
||||
username:
|
||||
from_secret: docker_username
|
||||
password:
|
||||
|
@@ -1,7 +1,7 @@
|
||||
# OpenVPN and Deluge with WebUI
|
||||
|
||||
/badge.svg?branch=master)
|
||||
[](https://hub.docker.com/r/ebrianne/docker-deluge-openvpn/)
|
||||
[](https://drone.beatrice.wtf/bea/docker-deluge-openvpn)
|
||||
[](https://hub.docker.com/r/bottledpills/deluge-openvpn/)
|
||||
|
||||
## Acknowledgments
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
FROM ubuntu:24.04
|
||||
FROM ubuntu:22.04
|
||||
|
||||
ARG DEBIAN_FRONTEND="noninteractive"
|
||||
ENV DUMB_INIT_BASE_URL="https://github.com/Yelp/dumb-init/releases/download/v1.2.5"
|
||||
|
@@ -1,4 +1,4 @@
|
||||
FROM ubuntu:24.04
|
||||
FROM ubuntu:22.04
|
||||
|
||||
ARG DEBIAN_FRONTEND="noninteractive"
|
||||
ENV DUMB_INIT_BASE_URL="https://github.com/Yelp/dumb-init/releases/download/v1.2.5"
|
||||
|
10
docker/manifest.latest.tmpl
Normal file
10
docker/manifest.latest.tmpl
Normal file
@@ -0,0 +1,10 @@
|
||||
image: bottledpills/deluge-openvpn:latest
|
||||
manifests:
|
||||
- image: bottledpills/deluge-openvpn:latest-linux-amd64
|
||||
platform:
|
||||
architecture: amd64
|
||||
os: linux
|
||||
- image: bottledpills/deluge-openvpn:latest-linux-arm64
|
||||
platform:
|
||||
architecture: arm64
|
||||
os: linux
|
@@ -1,12 +0,0 @@
|
||||
image: bottledpills/deluge-openvpn:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
|
||||
manifests:
|
||||
-
|
||||
image: bottledpills/deluge-openvpn:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-amd64
|
||||
platform:
|
||||
architecture: amd64
|
||||
os: linux
|
||||
-
|
||||
image: bottledpills/deluge-openvpn:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm64
|
||||
platform:
|
||||
architecture: arm64
|
||||
os: linux
|
10
docker/manifest.version.tmpl
Normal file
10
docker/manifest.version.tmpl
Normal file
@@ -0,0 +1,10 @@
|
||||
image: bottledpills/deluge-openvpn:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
|
||||
manifests:
|
||||
- image: bottledpills/deluge-openvpn:{{#if build.tag}}{{trimPrefix "v" build.tag}}-linux-amd64{{else}}latest-linux-amd64{{/if}}
|
||||
platform:
|
||||
architecture: amd64
|
||||
os: linux
|
||||
- image: bottledpills/deluge-openvpn:{{#if build.tag}}{{trimPrefix "v" build.tag}}-linux-arm64{{else}}latest-linux-arm64{{/if}}
|
||||
platform:
|
||||
architecture: arm64
|
||||
os: linux
|
Reference in New Issue
Block a user