Compare commits

...

10 Commits

Author SHA1 Message Date
269df6a0c2
use new logging config
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 1m58s
2023-12-31 22:33:20 +01:00
df5346edca
push to version 2068c3b0 2023-12-31 20:46:43 +01:00
42a4823c6a
use alpine 3.17 2022-11-23 17:30:35 +01:00
225148bf9b Add '.woodpecker.yml' 2022-11-11 07:11:31 +00:00
b3c270d389 Delete '.gitlab-ci.yml' 2022-11-11 07:10:58 +00:00
a916765ae9 use newer base image 2022-07-12 19:45:00 +02:00
8e738fe52c
move to new gitlab host 2022-02-15 16:57:00 +01:00
f7e58f1942
use new s6-rc layout 2022-02-15 16:50:55 +01:00
d217375670
use new s6-rc layout 2022-02-15 16:11:07 +01:00
31a9e580a1
log to stdout 2021-09-28 17:56:36 +02:00
10 changed files with 25 additions and 26 deletions

View File

@ -0,0 +1,12 @@
name: Build Multiarch Container Image
on: [push]
jobs:
call-reusable-workflow:
uses: container/multiarch-build-workflow/.gitea/workflows/build.yaml@main
with:
repository: ${{ gitea.repository }}
ref_name: ${{ gitea.ref_name }}
sha: ${{ gitea.sha }}
registry_url: ${{ secrets.REGISTRY_URL }}
registry_user: ${{ secrets.REGISTRY_USER }}
registry_pw: ${{ secrets.REGISTRY_PW }}

View File

@ -1,12 +0,0 @@
stages:
- build
variables:
IMAGE_NAME: thallian/molly-brown
CI_BUILD_ARCHS: "linux/amd64,linux/arm64"
build:
stage: build
script:
- docker login -u $DOCKER_USER -p $DOCKER_PASSWORD $DOCKER_REGISTRY
- docker buildx build --platform "$CI_BUILD_ARCHS" --progress plain --pull --tag "$IMAGE_NAME:$CI_COMMIT_SHA" --tag "$IMAGE_NAME:$CI_COMMIT_REF_NAME" --tag "$IMAGE_NAME:latest" --push .

View File

@ -1,11 +1,11 @@
FROM golang:1.15.0-alpine3.12 AS builder
FROM docker.io/golang:1.21-alpine3.19 AS builder
ENV GO111MODULE=on
ENV VERSION=48f9a206c03c0470e1c132b9667c6daa3583dada
RUN go get tildegit.org/solderpunk/molly-brown@$VERSION
ENV VERSION=2068c3b02abf8f6a9160d1891d16a5237ab77a1b
RUN go install tildegit.org/solderpunk/molly-brown@$VERSION
FROM thallian/confd-env:latest
FROM docker.io/thallian/confd-env:3.19-3.1.6.2
RUN addgroup -g 2222 molly-brown
RUN adduser -h /home/molly-brown -S -D -u 2222 -G molly-brown molly-brown
@ -14,8 +14,6 @@ RUN addgroup molly-brown tty
RUN mkdir -p /var/gemini
RUN chown molly-brown:molly-brown /var/gemini
RUN ln -sf /dev/stdout /home/molly-brown/access.log
RUN apk --no-cache add \
openssl \
coreutils

View File

@ -2,14 +2,14 @@
#
Port = 1965
Hostname = "{{ getenv "HOST_NAME" }}"
CertPath = "/etc/molly-brown/keys/{{ getenv "HOST_NAME" }}-cert.pem"
KeyPath = "/etc/molly-brown/keys/{{ getenv "HOST_NAME" }}-key.pem"
CertPath = "/etc/molly-brown/keys/cert.pem"
KeyPath = "/etc/molly-brown/keys/key.pem"
DocBase = "/var/gemini/"
HomeDocBase = "users"
GeminiExt = "gmi"
DefaultLang = "{{ getenv "DEFAULT_LANG" "en" }}"
AccessLog = "/home/molly-brown/access.log"
ErrorLog = "/home/molly-brown/access.log"
AccessLog = "-"
ErrorLog = ""
ReadMollyFiles = true
#

View File

@ -1 +0,0 @@
/var/gemini/ true molly-brown:molly-brown 0666 0777

View File

@ -0,0 +1 @@
confd

View File

@ -0,0 +1,3 @@
#!/bin/sh
exec molly-brown -c /etc/molly-brown/molly.conf -u molly-brown

View File

@ -0,0 +1 @@
longrun

View File

@ -1,3 +0,0 @@
#!/usr/bin/with-contenv sh
exec s6-setuidgid molly-brown molly-brown -c /etc/molly-brown/molly.conf