Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,13 @@ MAIL_FROM_NAME="${APP_NAME}"
# Enable Shibboleth authentication
#SHIBBOLETH_ENABLED=false

# OIDC config
#OIDC_ENABLED=false
#OIDC_ISSUER=
#OIDC_CLIENT_ID=
#OIDC_CLIENT_SECRET=
#OIDC_SCOPES=profile,email

# Enabled locales
# Comma separated list, e.g. de,en
# If unset all available locales are enabled (lang + resources/custom/lang)
Expand Down
34 changes: 0 additions & 34 deletions .github/dependabot.yml

This file was deleted.

35 changes: 8 additions & 27 deletions .github/workflows/ci-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,8 @@ name: CI Docker build

on:
workflow_dispatch:
release:
types: [published]
push:
branches:
- develop
- "[0-9].x"
pull_request:

jobs:
build-and-push-image:
runs-on: ubuntu-latest
Expand All @@ -22,26 +18,12 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: pilos/pilos
flavor: |
latest=auto
prefix=
suffix=
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=ref,event=branch,prefix=dev-
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set version to tag name
if: ${{ github.event_name == 'release' }}
Expand All @@ -57,7 +39,6 @@ jobs:
file: docker/app/Dockerfile
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
tags: "${{github.action_repository}}:${{github.head_ref}}"
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=registry,ref=pilos/pilos:buildcache
cache-to: type=registry,ref=pilos/pilos:buildcache,mode=max

Loading
Loading