Skip to content

Commit

Permalink
chore: rename dexters-ops to deedee-ops
Browse files Browse the repository at this point in the history
  • Loading branch information
ajgon committed Dec 2, 2023
1 parent 5cd2b6c commit f3d28bd
Show file tree
Hide file tree
Showing 14 changed files with 33 additions and 33 deletions.
10 changes: 5 additions & 5 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
":automergeDigest",
":automergeBranch",
":automergePatch",
"github>dexters-ops/containers//.github/renovate/autoMerge.json5",
"github>dexters-ops/containers//.github/renovate/commitMessage.json5",
"github>dexters-ops/containers//.github/renovate/customManagers.json5",
"github>dexters-ops/containers//.github/renovate/labels.json5",
"github>dexters-ops/containers//.github/renovate/semanticCommits.json5"
"github>deedee-ops/containers//.github/renovate/autoMerge.json5",
"github>deedee-ops/containers//.github/renovate/commitMessage.json5",
"github>deedee-ops/containers//.github/renovate/customManagers.json5",
"github>deedee-ops/containers//.github/renovate/labels.json5",
"github>deedee-ops/containers//.github/renovate/semanticCommits.json5"
],
"platform": "github",
"onboarding": false,
Expand Down
20 changes: 10 additions & 10 deletions .github/scripts/templates/README.md.j2
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ _A Collection of Container Images Optimized for Kubernetes_

<div align="center">

![GitHub Repo stars](https://img.shields.io/github/stars/dexters-ops/containers?style=for-the-badge)
![GitHub forks](https://img.shields.io/github/forks/dexters-ops/containers?style=for-the-badge)
![GitHub Repo stars](https://img.shields.io/github/stars/deedee-ops/containers?style=for-the-badge)
![GitHub forks](https://img.shields.io/github/forks/deedee-ops/containers?style=for-the-badge)

</div>

Welcome to my container images, if looking for a container start by [browsing the container packages](https://github.com/dexters-ops?tab=packages&repo_name=containers).
Welcome to my container images, if looking for a container start by [browsing the container packages](https://github.com/deedee-ops?tab=packages&repo_name=containers).

## Mission statement

Expand Down Expand Up @@ -58,12 +58,12 @@ The containers built here do not use immutable tags, as least not in the more co

A similar approach applies here, but instead of appending a `-ls69` or `-r420` prefix to the tag, instead the sha256 digest of the image is used. While this is not as pretty it is just as functional in making the images immutable.

| Container | Immutable |
|------------------------------------------------------|-----------|
| `ghcr.io/dexters-ops/paperless-ngx:latest` ||
| `ghcr.io/dexters-ops/paperless-ngx:1.17.4` ||
| `ghcr.io/dexters-ops/paperless-ngx:latest@sha256:613c...` ||
| `ghcr.io/dexters-ops/paperless-ngx:1.17.4@sha256:613c...` ||
| Container | Immutable |
|-----------------------------------------------------------|-----------|
| `ghcr.io/deedee-ops/paperless-ngx:latest` ||
| `ghcr.io/deedee-ops/paperless-ngx:1.17.4` ||
| `ghcr.io/deedee-ops/paperless-ngx:latest@sha256:613c...` ||
| `ghcr.io/deedee-ops/paperless-ngx:1.17.4@sha256:613c...` ||

_If pinning an image to the sha256 digest, tools like [Renovate](https://github.com/renovatebot/renovate) support updating the container on a digest or application version change._

Expand All @@ -74,7 +74,7 @@ Each Image will be built with a `latest` tag, along with tags specific to it's v
Container | Channel | Image | Latest Tags
--- | --- | --- | ---
{% for image in app_images | sort(attribute="name") -%}
[{{ image.name }}]({{ image.html_url }}) | {{ image.channel }} | ghcr.io/dexters-ops/{{ image.name }} |
[{{ image.name }}]({{ image.html_url }}) | {{ image.channel }} | ghcr.io/deedee-ops/{{ image.name }} |
{%- set space = joiner(" ") -%}
{%- for tag in image.tags -%}
{{ space() }}![{{ tag }}](https://img.shields.io/badge/{{ tag.replace("-", "--") }}-{% if tag == "latest" %}green{% else %}blue{% endif %}?style=flat-square)
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:

jobs:
prepare-matrix:
uses: dexters-ops/containers/.github/workflows/prepare-matrix.yaml@master
uses: deedee-ops/containers/.github/workflows/prepare-matrix.yaml@master
secrets: inherit

deploy:
Expand Down Expand Up @@ -107,9 +107,9 @@ jobs:
${{ steps.vars.outputs.label_type }}.title="${{ matrix.apps.app }} (${{ matrix.apps.channel }})"
${{ steps.vars.outputs.label_type }}.version="${{ steps.vars.outputs.build_version }}"
${{ steps.vars.outputs.label_type }}.authors="Igor Rzegocki <[email protected]>"
${{ steps.vars.outputs.label_type }}.url="https://github.com/dexters-ops/containers/tree/master/apps/${{ matrix.apps.app }}"
${{ steps.vars.outputs.label_type }}.build.url="https://github.com/dexters-ops/containers/actions/runs/${{ github.run_id }}"
${{ steps.vars.outputs.label_type }}.documentation="https://github.com/dexters-ops/containers/tree/master/apps/${{ matrix.apps.app }}/README.md"
${{ steps.vars.outputs.label_type }}.url="https://github.com/deedee-ops/containers/tree/master/apps/${{ matrix.apps.app }}"
${{ steps.vars.outputs.label_type }}.build.url="https://github.com/deedee-ops/containers/actions/runs/${{ github.run_id }}"
${{ steps.vars.outputs.label_type }}.documentation="https://github.com/deedee-ops/containers/tree/master/apps/${{ matrix.apps.app }}/README.md"
${{ steps.vars.outputs.label_type }}.revision="${{ github.sha }}"
context: apps/${{ matrix.apps.app }}
platforms: ${{ steps.vars.outputs.platforms }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/on-merge-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ name: Deploy image

jobs:
deploy:
uses: dexters-ops/containers/.github/workflows/deploy.yaml@master
uses: deedee-ops/containers/.github/workflows/deploy.yaml@master
secrets: inherit

build-readme:
needs: deploy
uses: dexters-ops/containers/.github/workflows/render-readme.yaml@master
uses: deedee-ops/containers/.github/workflows/render-readme.yaml@master
secrets: inherit
4 changes: 2 additions & 2 deletions .github/workflows/on-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: Validate pull request

jobs:
lint:
uses: dexters-ops/containers/.github/workflows/lint.yaml@master
uses: deedee-ops/containers/.github/workflows/lint.yaml@master
secrets: inherit

test:
uses: dexters-ops/containers/.github/workflows/test.yaml@master
uses: deedee-ops/containers/.github/workflows/test.yaml@master
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:

jobs:
prepare-matrix:
uses: dexters-ops/containers/.github/workflows/prepare-matrix.yaml@master
uses: deedee-ops/containers/.github/workflows/prepare-matrix.yaml@master
secrets: inherit

test:
Expand Down
4 changes: 2 additions & 2 deletions Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ tasks:
--label '{{ .LABEL_TYPE }}.title={{ .APP }} ({{ .CHANNEL }})' \
--label '{{ .LABEL_TYPE }}.version={{ .VERSION }}' \
--label '{{ .LABEL_TYPE }}.authors=Igor Rzegocki <[email protected]>' \
--label '{{ .LABEL_TYPE }}.url=https://github.com/dexters-ops/containers/tree/master/apps/{{ .APP }}' \
--label '{{ .LABEL_TYPE }}.documentation=https://github.com/dexters-ops/containers/tree/master/apps/{{ .APP }}/README.md' \
--label '{{ .LABEL_TYPE }}.url=https://github.com/deedee-ops/containers/tree/master/apps/{{ .APP }}' \
--label '{{ .LABEL_TYPE }}.documentation=https://github.com/deedee-ops/containers/tree/master/apps/{{ .APP }}/README.md' \
-f apps/{{ .APP }}/Dockerfile apps/{{ .APP }}
done
# yamllint enable
Expand Down
2 changes: 1 addition & 1 deletion apps/authelia/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG TARGETPLATFORM
ARG VERSION
FROM ghcr.io/authelia/authelia:${VERSION} as source

FROM ghcr.io/dexters-ops/alpine:3.18.5
FROM ghcr.io/deedee-ops/alpine:3.18.5

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/csp-exporter/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN apk add --no-cache --update bash git \
&& git clone --branch "v${VERSION}" https://git.benburwell.com/csp_exporter . \
&& bash -c 'IFS=/ read -r GOOS GOARCH <<< "${TARGETPLATFORM}" && go build -o csp_exporter main.go'

FROM ghcr.io/dexters-ops/alpine:3.18.5
FROM ghcr.io/deedee-ops/alpine:3.18.5

ENV COLLECTOR_BIND_ADDR=0.0.0.0:8000
ENV PROM_BIND_ADDR=0.0.0.0:9477
Expand Down
2 changes: 1 addition & 1 deletion apps/lldap/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG VERSION
ARG BASEIMGVERSION
FROM ghcr.io/lldap/lldap:${BASEIMGVERSION} as source

FROM ghcr.io/dexters-ops/alpine:3.18.5
FROM ghcr.io/deedee-ops/alpine:3.18.5

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/maddy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG TARGETPLATFORM
ARG VERSION
FROM ghcr.io/foxcpp/maddy:${VERSION} as source

FROM ghcr.io/dexters-ops/alpine:3.18.5
FROM ghcr.io/deedee-ops/alpine:3.18.5

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/postgres-init/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/dexters-ops/ubuntu:22.04
FROM ghcr.io/deedee-ops/ubuntu:22.04

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/postgres-logical-backup/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/dexters-ops/ubuntu:22.04
FROM ghcr.io/deedee-ops/ubuntu:22.04

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/syncthing/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG TARGETPLATFORM
ARG VERSION
FROM syncthing/syncthing:${VERSION} as source

FROM ghcr.io/dexters-ops/alpine:3.18.5
FROM ghcr.io/deedee-ops/alpine:3.18.5

ARG TARGETPLATFORM
ARG VERSION
Expand Down

0 comments on commit f3d28bd

Please sign in to comment.