Compare commits
1 Commits
main
...
renovate/a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
42d5a574c8 |
5
.archive/.github/renovate.json
vendored
5
.archive/.github/renovate.json
vendored
@@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": [
|
|
||||||
"config:base"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
stages:
|
|
||||||
- build
|
|
||||||
|
|
||||||
build:
|
|
||||||
stage: build
|
|
||||||
only:
|
|
||||||
- tags
|
|
||||||
image: docker:19.03.12
|
|
||||||
services:
|
|
||||||
- docker:19.03.12-dind
|
|
||||||
variables:
|
|
||||||
IMAGE_TAG: "$CI_REGISTRY_IMAGE:$CI_COMMIT_TAG"
|
|
||||||
script:
|
|
||||||
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
|
|
||||||
- docker build -t $CI_REGISTRY_IMAGE:latest -t $IMAGE_TAG .
|
|
||||||
- docker build -t $IMAGE_TAG -t $CI_REGISTRY_IMAGE:latest .
|
|
||||||
- docker push $IMAGE_TAG
|
|
||||||
- docker push $CI_REGISTRY_IMAGE:latest
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
* @luke
|
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
name: CI
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
types:
|
|
||||||
- opened
|
|
||||||
- edited
|
|
||||||
- synchronize
|
|
||||||
- reopened
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
ci:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Check out repository code
|
|
||||||
uses: actions/checkout@v6.0.1
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Run Hadolint
|
|
||||||
uses: hadolint/hadolint-action@v3.3.0
|
|
||||||
with:
|
|
||||||
dockerfile: Dockerfile
|
|
||||||
output-file: hadolint.out
|
|
||||||
# format: sonarqube
|
|
||||||
format: tty
|
|
||||||
no-fail: true
|
|
||||||
|
|
||||||
- name: Print Hadolint results
|
|
||||||
if: ${{ always() }}
|
|
||||||
run: cat hadolint.out
|
|
||||||
|
|
||||||
# - name: SonarQube Scan
|
|
||||||
# uses: SonarSource/sonarqube-scan-action@v5.2.0
|
|
||||||
# env:
|
|
||||||
# SONAR_HOST_URL: ${{ secrets.SONARQUBE_HOST_URL }}
|
|
||||||
# SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }}
|
|
||||||
|
|
||||||
# - name: Snyk SAST Scan
|
|
||||||
# uses: snyk/actions/python@master
|
|
||||||
# env:
|
|
||||||
# SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
|
|
||||||
# with:
|
|
||||||
# # command: snyk
|
|
||||||
# args: snyk code test --all-projects --exclude=.archive
|
|
||||||
|
|
||||||
# - name: Snyk Vulnerability Scan
|
|
||||||
# uses: snyk/actions/python@master
|
|
||||||
# continue-on-error: true # Sometimes vulns aren't immediately fixable
|
|
||||||
# env:
|
|
||||||
# SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
|
|
||||||
# with:
|
|
||||||
# args: test --all-projects
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
name: Validate PR Title
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
types:
|
|
||||||
- opened
|
|
||||||
- edited
|
|
||||||
- synchronize
|
|
||||||
- reopened
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
validate:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: https://git.tainton.uk/actions/conventional-commits-check-action@v1.3.0
|
|
||||||
with:
|
|
||||||
commit-message: ${{ gitea.event.pull_request.title }}
|
|
||||||
@@ -1,103 +0,0 @@
|
|||||||
name: Build and Release
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
inputs:
|
|
||||||
version:
|
|
||||||
description: 'Documize version to build (e.g., v5.14.0). Must start with "v" and match an existing Documize release tag.'
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
# tag:
|
|
||||||
# name: Tag release
|
|
||||||
# uses: https://git.tainton.uk/actions/gha-workflows/.gitea/workflows/release-with-tag.yaml@main
|
|
||||||
|
|
||||||
# create_release:
|
|
||||||
# name: Create Release
|
|
||||||
# needs: tag
|
|
||||||
# uses: https://git.tainton.uk/actions/gha-workflows/.gitea/workflows/create-release-preexisting-tag.yaml@main
|
|
||||||
# with:
|
|
||||||
# tag: ${{ needs.tag.outputs.tag_name }}
|
|
||||||
# body: ${{ needs.tag.outputs.changelog }}
|
|
||||||
# secrets:
|
|
||||||
# ACTIONS_TOKEN: ${{ secrets.ACTIONS_TOKEN }}
|
|
||||||
|
|
||||||
docker:
|
|
||||||
name: Publish Docker Images
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
# needs: [tag, create_release]
|
|
||||||
steps:
|
|
||||||
- name: Update Docker configuration
|
|
||||||
continue-on-error: true
|
|
||||||
run: |
|
|
||||||
mkdir -p /etc/default
|
|
||||||
mkdir -p /etc/docker
|
|
||||||
touch -a /etc/default/docker
|
|
||||||
touch -a /etc/docker/daemon.json
|
|
||||||
echo "DOCKER_OPTS=\"--insecure-registry ${{ vars.PACKAGES_REGISTRY_URL }}\"" >> /etc/default/docker
|
|
||||||
echo "{\"insecure-registries\": [\"${{ vars.PACKAGES_REGISTRY_URL }}\"]}" > /etc/docker/daemon.json
|
|
||||||
|
|
||||||
- name: Get repo name
|
|
||||||
id: split
|
|
||||||
run: echo "repo=${REPO##*/}" >> "$GITEA_OUTPUT"
|
|
||||||
env:
|
|
||||||
REPO: ${{ gitea.repository }}
|
|
||||||
|
|
||||||
- name: Check out repository
|
|
||||||
uses: actions/checkout@v6.0.1
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
ref: main
|
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
|
||||||
uses: docker/setup-buildx-action@v3
|
|
||||||
|
|
||||||
- name: Log in to Gitea Container Registry
|
|
||||||
uses: docker/login-action@v3
|
|
||||||
with:
|
|
||||||
registry: ${{ vars.PACKAGES_REGISTRY_URL }}
|
|
||||||
username: ${{ vars.ACTIONS_USERNAME }}
|
|
||||||
password: ${{ secrets.ACTIONS_TOKEN }}
|
|
||||||
|
|
||||||
- name: Log in to GitHub Container Registry
|
|
||||||
uses: docker/login-action@v3
|
|
||||||
with:
|
|
||||||
registry: ghcr.io
|
|
||||||
username: ${{ vars.GHCR_USERNAME }}
|
|
||||||
password: ${{ secrets.GHCR_TOKEN }}
|
|
||||||
|
|
||||||
- name: Extract metadata (tags, labels) for Docker
|
|
||||||
id: meta
|
|
||||||
uses: docker/metadata-action@v5
|
|
||||||
with:
|
|
||||||
tags: type=semver,pattern=v{{version}},value=${{ inputs.version }}
|
|
||||||
images: |
|
|
||||||
ghcr.io/${{ vars.GHCR_USERNAME }}/${{ steps.split.outputs.repo }}
|
|
||||||
${{ vars.PACKAGES_REGISTRY_URL }}/${{ gitea.repository }}
|
|
||||||
|
|
||||||
- name: Print metadata
|
|
||||||
run: |
|
|
||||||
printf "Annotations:\n${{ steps.meta.outputs.annotations }}"
|
|
||||||
echo ""
|
|
||||||
printf "Labels:\n${{ steps.meta.outputs.labels }}"
|
|
||||||
echo ""
|
|
||||||
printf "Tags:\n${{ steps.meta.outputs.tags }}"
|
|
||||||
|
|
||||||
- name: Build images
|
|
||||||
uses: docker/build-push-action@v6
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
push: false
|
|
||||||
load: true
|
|
||||||
build-args: |
|
|
||||||
DOCUMIZE_VERSION=${{ inputs.version }}
|
|
||||||
annotations: ${{ steps.meta.outputs.annotations }}
|
|
||||||
labels: ${{ steps.meta.outputs.labels }}
|
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
|
||||||
|
|
||||||
- name: Push images
|
|
||||||
run: |
|
|
||||||
strtags="${{ steps.meta.outputs.tags }}"
|
|
||||||
readarray -t lines <<<"$strtags"
|
|
||||||
for element in "${lines[@]}"; do docker push "$element"; done
|
|
||||||
unset strtags lines
|
|
||||||
@@ -8,7 +8,7 @@ jobs:
|
|||||||
name: GitHub Container Registry
|
name: GitHub Container Registry
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- name: Login to GitHub Container Registry
|
- name: Login to GitHub Container Registry
|
||||||
run: echo ${{ secrets.PAT }} | docker login ghcr.io -u luketainton --password-stdin
|
run: echo ${{ secrets.PAT }} | docker login ghcr.io -u luketainton --password-stdin
|
||||||
- name: Build image for GitHub Container Registry
|
- name: Build image for GitHub Container Registry
|
||||||
13
Dockerfile
13
Dockerfile
@@ -1,10 +1,9 @@
|
|||||||
FROM alpine:3.23.2
|
FROM alpine:latest
|
||||||
LABEL maintainer="Luke Tainton <luke@tainton.uk>"
|
LABEL maintainer="Luke Tainton <luke@tainton.uk>"
|
||||||
LABEL org.opencontainers.image.source="https://git.tainton.uk/repos/documize-docker"
|
LABEL org.opencontainers.image.source="https://github.com/luketainton/documize-docker"
|
||||||
ARG DOCUMIZE_VERSION=v5.14.0
|
ARG DOCUMIZE_VERSION=v3.6.0
|
||||||
ENV DOCUMIZEPORT=5001
|
RUN apk add --no-cache curl
|
||||||
RUN apk add --no-cache curl=8.17.0-r1
|
|
||||||
WORKDIR /opt
|
WORKDIR /opt
|
||||||
RUN curl -L -o documize "https://github.com/documize/community/releases/download/${DOCUMIZE_VERSION}/documize-community-linux-amd64" && chmod 755 documize
|
RUN curl -L -o documize "https://github.com/documize/community/releases/download/${DOCUMIZE_VERSION}/documize-community-linux-amd64" && chmod 755 documize
|
||||||
ENTRYPOINT ["./documize -port ${DOCUMIZEPORT}"]
|
ENTRYPOINT ["./documize -port 80"]
|
||||||
EXPOSE ${DOCUMIZEPORT}
|
EXPOSE 80
|
||||||
|
|||||||
@@ -2,7 +2,4 @@
|
|||||||
Documize Community in a Docker container.
|
Documize Community in a Docker container.
|
||||||
|
|
||||||
## Running
|
## Running
|
||||||
Set the `DOCUMIZEDB` and `DOCUMIZEDBTYPE` environment variables as described in the [Installation Guide](https://docs.documize.com/s/VzO9ZqMOCgABGyfW/installation-guides/d/V16L08ucxwABhZF6/installation-guide) and [Configuration Options](https://docs.documize.com/s/VzO9ZqMOCgABGyfW/VzO9ZqMOCgABGyfW/d/VzSL8cVZ4QAB2B4Y/configuration-options).
|
Set the `DOCUMIZEDB` and `DOCUMIZEDBTYPE` environment variables as described in the [documentation](https://docs.documize.com/s/VzO9ZqMOCgABGyfW/installation-guides/d/V16L08ucxwABhZF6/installation-guide).
|
||||||
|
|
||||||
## Docker Compose
|
|
||||||
A sample Docker Compose manifest is available in this repo.
|
|
||||||
|
|||||||
@@ -1,35 +0,0 @@
|
|||||||
services:
|
|
||||||
app:
|
|
||||||
build:
|
|
||||||
context: .
|
|
||||||
dockerfile: Dockerfile
|
|
||||||
# Alternatively, you can use a pre-built image:
|
|
||||||
# image: "git.tainton.uk/repos/documize-docker:latest"
|
|
||||||
restart: "unless-stopped"
|
|
||||||
environment:
|
|
||||||
- "DOCUMIZEPORT=5001"
|
|
||||||
- "DOCUMIZESALT=your_salt_here"
|
|
||||||
- "DOCUMIZEDBTYPE=postgresql"
|
|
||||||
- "DOCUMIZEDB=host=db port=5432 dbname=documize user=documize password=${DB_PASSWORD} sslmode=disable"
|
|
||||||
ports:
|
|
||||||
- "80:5001/tcp"
|
|
||||||
depends_on:
|
|
||||||
db:
|
|
||||||
condition: service_healthy
|
|
||||||
|
|
||||||
db:
|
|
||||||
image: postgres:18.1-alpine
|
|
||||||
restart: unless-stopped
|
|
||||||
environment:
|
|
||||||
- POSTGRES_USER=documize
|
|
||||||
- POSTGRES_PASSWORD=${DB_PASSWORD}
|
|
||||||
- POSTGRES_DB=documize
|
|
||||||
volumes:
|
|
||||||
- "./db:/var/lib/postgresql/18/docker"
|
|
||||||
healthcheck:
|
|
||||||
test:
|
|
||||||
- CMD-SHELL
|
|
||||||
- pg_isready -U documize
|
|
||||||
interval: 5s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 5
|
|
||||||
@@ -1,23 +1,5 @@
|
|||||||
{
|
{
|
||||||
"assignAutomerge": false,
|
"extends": [
|
||||||
"assigneesFromCodeOwners": false,
|
"config:base"
|
||||||
"dependencyDashboardAutoclose": true,
|
]
|
||||||
"extends": ["config:recommended", "docker:enableMajor"],
|
|
||||||
"ignorePaths": ["**/.archive/**"],
|
|
||||||
"labels": ["type/dependencies"],
|
|
||||||
"platformCommit": "enabled",
|
|
||||||
"rebaseWhen": "behind-base-branch",
|
|
||||||
"rollbackPrs": true,
|
|
||||||
"semanticCommits": "enabled",
|
|
||||||
"semanticCommitScope": "deps",
|
|
||||||
"semanticCommitType": "feat",
|
|
||||||
"vulnerabilityAlerts": {
|
|
||||||
"commitMessagePrefix": "[SECURITY] ",
|
|
||||||
"enabled": true,
|
|
||||||
"labels": ["security"],
|
|
||||||
"prCreation": "immediate"
|
|
||||||
},
|
|
||||||
"lockFileMaintenance": {
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user