Skip to content

Commit

Permalink
org: transit the project from octomation to octopot
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilsk committed Aug 12, 2022
1 parent 0da65a8 commit d7c57a8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/octomation/stub
ghcr.io/octopot/stub
tags: |
type=raw,value=latest
- name: Build and push images
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ docker run -d \
-p 443:443 \
-v acme:/etc/traefik/acme \
-v stub:/runtime \
ghcr.io/octomation/stub:latest
ghcr.io/octopot/stub:latest
```

<p align="right">made with ❤️ for everyone by <a href="https://www.octolab.org/">OctoLab</a></p>

[social.preview]: https://cdn.octolab.org/repo/stub.jpg
[preview.config]: https://socialify.git.ci/octomation/stub?description=1&font=Raleway&language=1&name=1&owner=1&pattern=Circuit%20Board&theme=Light
[preview.fallback]: https://socialify.git.ci/octomation/stub/image?description=1&font=Raleway&language=1&name=1&owner=1&pattern=Circuit%20Board&theme=Light
[preview.config]: https://socialify.git.ci/octopot/stub?description=1&font=Raleway&language=1&name=1&owner=1&pattern=Circuit%20Board&theme=Light
[preview.fallback]: https://socialify.git.ci/octopot/stub/image?description=1&font=Raleway&language=1&name=1&owner=1&pattern=Circuit%20Board&theme=Light
10 changes: 5 additions & 5 deletions Taskfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ set -euo pipefail
build() {
docker build \
-f traefik/Dockerfile \
-t octomation/stub:latest \
-t octopot/stub:latest \
traefik
}

Expand All @@ -19,27 +19,27 @@ publish() {
--platform linux/amd64,linux/arm64 \
--push \
-f traefik/Dockerfile \
-t ghcr.io/octomation/stub:latest \
-t ghcr.io/octopot/stub:latest \
traefik
}

server() {
docker run \
--rm -it \
-v "$(pwd)/traefik/users":/runtime/users \
octomation/stub:latest
octopot/stub:latest
}

reload() {
docker pull ghcr.io/octomation/stub
docker pull ghcr.io/octopot/stub
docker rm -f stub
docker run -d \
--name stub \
-p 80:80 \
-p 443:443 \
-v acme:/etc/traefik/acme \
-v stub:/runtime \
ghcr.io/octomation/stub:latest
ghcr.io/octopot/stub:latest
docker rmi "$(docker images -q -f dangling=true)" 2> /dev/null
}

Expand Down
2 changes: 1 addition & 1 deletion traefik/dynamic/octolab.org/stub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ http:
redirect-stub:
redirectRegex:
regex: .*
replacement: https://github.com/octomation/stub
replacement: https://github.com/octopot/stub

0 comments on commit d7c57a8

Please sign in to comment.