Skip to content

Commit

Permalink
Update for CSSNR
Browse files Browse the repository at this point in the history
  • Loading branch information
smashedr committed Oct 6, 2024
1 parent 5a336f4 commit a01880c
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[![Test](https://img.shields.io/github/actions/workflow/status/smashedr/django5-boiler/test.yaml?logo=github&logoColor=white&label=test)](https://github.com/smashedr/django5-boiler/actions/workflows/test.yaml)
[![Build](https://img.shields.io/github/actions/workflow/status/smashedr/django5-boiler/build.yaml?logo=github&logoColor=white&label=build)](https://github.com/smashedr/django5-boiler/actions/workflows/build.yaml)
[![Deploy](https://img.shields.io/github/actions/workflow/status/smashedr/django5-boiler/deploy.yaml?logo=github&logoColor=white&label=deploy)](https://github.com/smashedr/django5-boiler/actions/workflows/deploy.yaml)
[![GitHub Last Commit](https://img.shields.io/github/last-commit/smashedr/django5-boiler?logo=github&logoColor=white&label=updated)](https://github.com/smashedr/django5-boiler/graphs/commit-activity)
[![GitHub Top Language](https://img.shields.io/github/languages/top/smashedr/django5-boiler?logo=htmx&logoColor=white)](https://github.com/smashedr/django5-boiler)
[![Test](https://img.shields.io/github/actions/workflow/status/cssnr/django5-boiler/test.yaml?logo=github&logoColor=white&label=test)](https://github.com/cssnr/django5-boiler/actions/workflows/test.yaml)
[![Build](https://img.shields.io/github/actions/workflow/status/cssnr/django5-boiler/build.yaml?logo=github&logoColor=white&label=build)](https://github.com/cssnr/django5-boiler/actions/workflows/build.yaml)
[![Deploy](https://img.shields.io/github/actions/workflow/status/cssnr/django5-boiler/deploy.yaml?logo=github&logoColor=white&label=deploy)](https://github.com/cssnr/django5-boiler/actions/workflows/deploy.yaml)
[![GitHub Last Commit](https://img.shields.io/github/last-commit/cssnr/django5-boiler?logo=github&logoColor=white&label=updated)](https://github.com/cssnr/django5-boiler/graphs/commit-activity)
[![GitHub Top Language](https://img.shields.io/github/languages/top/cssnr/django5-boiler?logo=htmx&logoColor=white)](https://github.com/cssnr/django5-boiler)
[![GitHub Org Stars](https://img.shields.io/github/stars/cssnr?style=flat&logo=github&logoColor=white)](https://cssnr.github.io/)
[![Discord](https://img.shields.io/discord/899171661457293343?logo=discord&logoColor=white&label=discord&color=7289da)](https://discord.gg/wXy6m2X8wY)

Expand Down
2 changes: 1 addition & 1 deletion app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN python3 -m pip install --no-cache-dir --upgrade pip &&\

FROM python:3.11-alpine

LABEL org.opencontainers.image.source="https://github.com/smashedr/django5-boiler"
LABEL org.opencontainers.image.source="https://github.com/cssnr/django5-boiler"
LABEL org.opencontainers.image.description="Django 5 Boiler Plate"
LABEL org.opencontainers.image.authors="smashedr"

Expand Down
4 changes: 2 additions & 2 deletions docker-bake.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
"app": {
"context": "app",
"dockerfile": "Dockerfile",
"tags": ["ghcr.io/smashedr/django5-boiler-app:latest"],
"tags": ["ghcr.io/cssnr/django5-boiler-app:latest"],
"platforms": ["linux/amd64", "linux/arm64"],
"output": ["type=image,push=true"]
},
"nginx": {
"context": "nginx",
"dockerfile": "Dockerfile",
"tags": ["ghcr.io/smashedr/django5-boiler-nginx:latest"],
"tags": ["ghcr.io/cssnr/django5-boiler-nginx:latest"],
"platforms": ["linux/amd64", "linux/arm64"],
"output": ["type=image,push=true"]
}
Expand Down
8 changes: 4 additions & 4 deletions docker-compose-swarm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ services:
nginx:
build:
context: nginx
image: ghcr.io/smashedr/django5-boiler-nginx:${VERSION:-latest}
image: ghcr.io/cssnr/django5-boiler-nginx:${VERSION:-latest}
deploy:
mode: global
resources:
Expand Down Expand Up @@ -96,7 +96,7 @@ services:
app:
build:
context: app
image: ghcr.io/smashedr/django5-boiler-app:${VERSION:-latest}
image: ghcr.io/cssnr/django5-boiler-app:${VERSION:-latest}
#env_file: stack.env
environment:
<<: *common-env-vars
Expand All @@ -121,7 +121,7 @@ services:
- internal

worker:
image: ghcr.io/smashedr/django5-boiler-app:${VERSION:-latest}
image: ghcr.io/cssnr/django5-boiler-app:${VERSION:-latest}
#env_file: stack.env
environment:
<<: *common-env-vars
Expand All @@ -140,7 +140,7 @@ services:
- internal

beat:
image: ghcr.io/smashedr/django5-boiler-app:${VERSION:-latest}
image: ghcr.io/cssnr/django5-boiler-app:${VERSION:-latest}
#env_file: stack.env
environment:
<<: *common-env-vars
Expand Down
2 changes: 1 addition & 1 deletion nginx/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM nginx:alpine-slim

LABEL org.opencontainers.image.source="https://github.com/smashedr/django5-boiler"
LABEL org.opencontainers.image.source="https://github.com/cssnr/django5-boiler"
LABEL org.opencontainers.image.description="Django 5 Boiler Plate"
LABEL org.opencontainers.image.authors="smashedr"

Expand Down

0 comments on commit a01880c

Please sign in to comment.