Compare commits
3 Commits
337d85fe81
...
35de6217f7
Author | SHA1 | Date | |
---|---|---|---|
35de6217f7 | |||
471f4262fd | |||
6ef917dfb4 |
29
.drone.yml
29
.drone.yml
@ -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
|
||||||
|
@ -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:
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user