Compare commits

...

3 Commits

Author SHA1 Message Date
35de6217f7
build: mirror to github
Some checks failed
continuous-integration/drone/push Build is failing
2024-12-27 17:26:13 +01:00
471f4262fd
chore: updated to wikindx 6.11.0 2024-12-27 17:24:04 +01:00
6ef917dfb4
fix: fixed image paths in example 2024-12-27 17:21:58 +01:00
4 changed files with 33 additions and 4 deletions

View File

@ -158,6 +158,35 @@ depends_on:
- build-nginx-amd64 - build-nginx-amd64
- build-nginx-arm64 - build-nginx-arm64
---
kind: pipeline
type: kubernetes
name: mirror-to-github
node_selector:
kubernetes.io/arch: amd64
federationhq.de/location: Blumendorf
federationhq.de/compute: true
steps:
- name: github-mirror
image: registry.cloud.federationhq.de/drone-github-mirror:latest
pull: always
settings:
GH_TOKEN:
from_secret: GH_TOKEN
GH_REPO: "byterazor/Container-Wikindx"
GH_REPO_DESC: "Container Images for running wikindx"
GH_REPO_HOMEPAGE: "https://gitea.federationhq.de/Container/wikindx"
depends_on:
- push
---
kind: secret
name: GH_TOKEN
get:
path: github
name: token
--- ---
kind: secret kind: secret
name: username name: username

View File

@ -23,7 +23,7 @@ services:
fpmwikindx: fpmwikindx:
restart: unless-stopped restart: unless-stopped
image: wikindx:fpm-latest image: byterazor/wikindx:fpm-latest
environment: environment:
WIKINDX_DB_HOST: "dbwikindx" WIKINDX_DB_HOST: "dbwikindx"
WIKINDX_DB: "wikindx" WIKINDX_DB: "wikindx"
@ -32,7 +32,7 @@ services:
nginxwikindx: nginxwikindx:
restart: unless-stopped restart: unless-stopped
image: wikindx:nginx-latest image: byterazor/wikindx:nginx-latest
ports: ports:
- "8080:8080" - "8080:8080"
environment: environment:

View File

@ -1,7 +1,7 @@
FROM alpine:latest as builder FROM alpine:latest as builder
RUN apk update && apk add --no-cache bash ca-certificates RUN apk update && apk add --no-cache bash ca-certificates
RUN wget -O wikindx.tar.bz2 https://master.dl.sourceforge.net/project/wikindx/6.10.2/wikindx_6.10.2.tar.bz2 RUN wget -O wikindx.tar.bz2 https://master.dl.sourceforge.net/project/wikindx/6.11.0/wikindx_6.11.0.tar.bz2
RUN mkdir wikindx; tar jxf wikindx.tar.bz2 -C wikindx --strip-components 1 RUN mkdir wikindx; tar jxf wikindx.tar.bz2 -C wikindx --strip-components 1
FROM alpine:latest FROM alpine:latest

View File

@ -1,7 +1,7 @@
FROM alpine:latest as builder FROM alpine:latest as builder
RUN apk update && apk add --no-cache bash ca-certificates RUN apk update && apk add --no-cache bash ca-certificates
RUN wget -O wikindx.tar.bz2 https://master.dl.sourceforge.net/project/wikindx/6.10.2/wikindx_6.10.2.tar.bz2 RUN wget -O wikindx.tar.bz2 https://master.dl.sourceforge.net/project/wikindx/6.11.0/wikindx_6.11.0.tar.bz2
RUN mkdir wikindx; tar jxf wikindx.tar.bz2 -C wikindx --strip-components 1 RUN mkdir wikindx; tar jxf wikindx.tar.bz2 -C wikindx --strip-components 1
FROM alpine:latest FROM alpine:latest