publish to quay and dockerhub
Some checks reported errors
continuous-integration/drone/push Build was killed
Some checks reported errors
continuous-integration/drone/push Build was killed
This commit is contained in:
parent
9ef3e05f59
commit
7fc067b117
67
.drone.yml
67
.drone.yml
@ -47,7 +47,7 @@ steps:
|
||||
- refs/heads/master
|
||||
- refs/tags/**
|
||||
|
||||
- name: publish
|
||||
- name: publish-dockerhub
|
||||
image: plugins/docker
|
||||
settings:
|
||||
dockerfile: Dockerfile
|
||||
@ -60,6 +60,25 @@ steps:
|
||||
ref:
|
||||
- refs/heads/master
|
||||
- refs/tags/**
|
||||
depends_on:
|
||||
- tags
|
||||
|
||||
- name: publish-quay
|
||||
image: plugins/docker
|
||||
settings:
|
||||
dockerfile: Dockerfile
|
||||
password:
|
||||
from_secret: quay_password
|
||||
registry: quay.io
|
||||
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
|
||||
username:
|
||||
from_secret: quay_username
|
||||
when:
|
||||
ref:
|
||||
- refs/heads/master
|
||||
- refs/tags/**
|
||||
depends_on:
|
||||
- tags
|
||||
|
||||
- name: publish-gitea
|
||||
image: plugins/gitea-release
|
||||
@ -73,6 +92,9 @@ steps:
|
||||
when:
|
||||
ref:
|
||||
- refs/tags/**
|
||||
depends_on:
|
||||
- publish-dockerhub
|
||||
- publish-quay
|
||||
|
||||
---
|
||||
kind: pipeline
|
||||
@ -83,17 +105,44 @@ platform:
|
||||
arch: amd64
|
||||
|
||||
steps:
|
||||
- name: readme
|
||||
image: sheogorath/readme-to-dockerhub
|
||||
- name: pushrm-dockerhub
|
||||
image: chko/docker-pushrm:1
|
||||
entrypoint:
|
||||
- /docker-pushrm
|
||||
command:
|
||||
- --file
|
||||
- README.md
|
||||
- --short
|
||||
- Rootless Bitwarden RS - Self-hosted password manager
|
||||
- xoxys/${DRONE_REPO_NAME}
|
||||
environment:
|
||||
DOCKERHUB_PASSWORD:
|
||||
DOCKER_PASS:
|
||||
from_secret: docker_password
|
||||
DOCKERHUB_REPO_NAME: ${DRONE_REPO_NAME}
|
||||
DOCKERHUB_REPO_PREFIX: xoxys
|
||||
DOCKERHUB_USERNAME:
|
||||
DOCKER_USER:
|
||||
from_secret: docker_username
|
||||
README_PATH: README.md
|
||||
SHORT_DESCRIPTION: Rootless Bitwarden_RS - Self-hosted password manager
|
||||
REPO_NAME: xoxys/${DRONE_REPO_NAME}
|
||||
SHORT_DESCRIPTION: Rootless Bitwarden RS - Self-hosted password manager
|
||||
when:
|
||||
status:
|
||||
- success
|
||||
|
||||
- name: pushrm-quay
|
||||
image: chko/docker-pushrm:1
|
||||
entrypoint:
|
||||
- /docker-pushrm
|
||||
command:
|
||||
- --provider
|
||||
- quay
|
||||
- --file
|
||||
- README.md
|
||||
- quay.io/thegeeklab/${DRONE_REPO_NAME}
|
||||
environment:
|
||||
APIKEY__QUAY_IO:
|
||||
from_secret: quay_token
|
||||
README_PATH: README.md
|
||||
REPO_NAME: thegeeklab/${DRONE_REPO_NAME}
|
||||
SHORT_DESCRIPTION: Custom Alpine base image
|
||||
when:
|
||||
status:
|
||||
- success
|
||||
@ -128,6 +177,6 @@ depends_on:
|
||||
|
||||
---
|
||||
kind: signature
|
||||
hmac: e9568e1910160ad88bbf4e14cc1e2695331361ea5048be83e6366adc717e20a4
|
||||
hmac: 0e877a1f56862cd98af694055c5dabba6d4067b4b2641686220eedbe9c246b79
|
||||
|
||||
...
|
||||
|
@ -1,7 +1,11 @@
|
||||
# [bitwardenrs](https://gitea.rknet.org/docker/bitwardenrs)
|
||||
|
||||
Rootless Bitwarden_RS - Self-hosted password manager
|
||||
|
||||
[![Build Status](https://img.shields.io/drone/build/docker/bitwardenrs?logo=drone&server=https%3A%2F%2Fdrone.rknet.org)](https://drone.rknet.org/docker/bitwardenrs)
|
||||
[![Docker Hub](https://img.shields.io/badge/docker-latest-blue.svg?logo=docker&logoColor=white)](https://hub.docker.com/r/xoxys/bitwardenrs)
|
||||
[![Quay.io](https://img.shields.io/badge/quay-latest-blue.svg?logo=docker&logoColor=white)](https://quay.io/repository/thegeeklab/bitwardenrs)
|
||||
[![Source: Gitea](https://img.shields.io/badge/source-gitea-blue.svg?logo=gitea&logoColor=white)](https://gitea.rknet.org/docker/bitwardenrs)
|
||||
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://gitea.rknet.org/docker/bitwardenrs/src/branch/master/LICENSE)
|
||||
|
||||
This is a custom Docker image for [bitwarden_rs](https://github.com/dani-garcia/bitwarden_rs). Bitwarden_rs is a Bitwarden server API implementation written in Rust compatible with upstream Bitwarden clients, perfect for self-hosted deployment where running the official resource-heavy service might not be ideal.
|
||||
|
Loading…
Reference in New Issue
Block a user