Skip to content

Commit bb4492e

Browse files
committed
feat(docker): changed docker hub organisation name to openswoolebundle
1 parent f219a84 commit bb4492e

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
lines changed

.circleci/config.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
version: 2.1
22
executors:
3-
pixelfederation-docker-client:
3+
openswoolebundle-docker-client:
44
docker:
5-
- image: pixelfederation/docker-client:20.10.17-compose
5+
- image: openswoolebundle/docker-client:20.10.17-compose
66
working_directory: ~/workdir
77

88
aliases:
@@ -34,10 +34,10 @@ aliases:
3434

3535
jobs:
3636
docker-bake-tagged:
37-
executor: pixelfederation-docker-client
37+
executor: openswoolebundle-docker-client
3838
environment:
3939
REGISTRY: docker.io
40-
NAMESPACE: pixelfederation
40+
NAMESPACE: openswoolebundle
4141
IMAGE: release-version-script
4242
SERVICES: releaser
4343
TAG_LATEST: latest
@@ -73,10 +73,10 @@ jobs:
7373
command: docker buildx bake --progress=plain $SERVICES
7474

7575
docker-bake:
76-
executor: pixelfederation-docker-client
76+
executor: openswoolebundle-docker-client
7777
environment:
7878
REGISTRY: docker.io
79-
NAMESPACE: pixelfederation
79+
NAMESPACE: openswoolebundle
8080
IMAGE: release-version-script
8181
SERVICES: releaser
8282
steps:
@@ -141,14 +141,14 @@ jobs:
141141

142142
releaser-dry-run:
143143
docker:
144-
- image: docker.io/pixelfederation/release-version-script:build-$CIRCLE_SHA1
144+
- image: docker.io/openswoolebundle/release-version-script:build-$CIRCLE_SHA1
145145
working_directory: /usr/src/app
146146
environment:
147147
DEBUG: "0"
148148
DRY_RUN: "1"
149149
GH_TOKEN: "xxx"
150150
GH_RELEASE_DRAFT: "true"
151-
GH_REPOSITORY: "pixelfederation/release-version-script"
151+
GH_REPOSITORY: "openswoolebundle/release-version-script"
152152
steps:
153153
- checkout
154154
- run:
@@ -163,13 +163,13 @@ jobs:
163163

164164
releaser:
165165
docker:
166-
- image: docker.io/pixelfederation/release-version-script:build-$CIRCLE_SHA1
166+
- image: docker.io/openswoolebundle/release-version-script:build-$CIRCLE_SHA1
167167
working_directory: /usr/src/app
168168
environment:
169169
DEBUG: "1"
170170
DRY_RUN: "0"
171171
GH_RELEASE_DRAFT: "false"
172-
GH_REPOSITORY: "pixelfederation/release-version-script"
172+
GH_REPOSITORY: "openswoolebundle/release-version-script"
173173
steps:
174174
- checkout
175175
- run:

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ COPY release-version.sh /usr/local/bin/release-version
77
RUN chmod a+x /usr/local/bin/release-version
88
ENV CURRENT_VERSION="" \
99
DRY_RUN="0" \
10-
GH_REPOSITORY="pixelfederation/release-version-script" \
11-
GH_COMMITER_NAME="swoole-bundle-bot" \
12-
GH_COMMITER_EMAIL="swoolebundle@gmail.com" \
10+
GH_REPOSITORY="openswoolebundle/release-version-script" \
11+
GH_COMMITER_NAME="openswoole-bundle-bot" \
12+
GH_COMMITER_EMAIL="[email protected].com" \
1313
GH_TOKEN="" \
1414
GH_RELEASE_DRAFT="false" \
1515
GH_RELEASE_PRERELEASE="false"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Published releases are available on DockerHub
44

5-
https://hub.docker.com/r/pixelfederation/release-version-script
5+
https://hub.docker.com/r/openswoolebundle/release-version-script
66

77
## Docker
88

docker-bake.hcl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ variable "REGISTRY" {
33
}
44

55
variable "NAMESPACE" {
6-
default = "pixelfederation"
6+
default = "openswoolebundle"
77
}
88

99
variable "IMAGE" {
@@ -19,8 +19,8 @@ variable "TAG_LATEST" {
1919
}
2020

2121
target "releaser" {
22-
cache-from = ["type=registry,ref=docker.io/pixelfederation/release-version-script-cache:releaser"]
23-
cache-to = ["type=registry,ref=docker.io/pixelfederation/release-version-script-cache:releaser,mode=max"]
22+
cache-from = ["type=registry,ref=docker.io/openswoolebundle/release-version-script-cache:releaser"]
23+
cache-to = ["type=registry,ref=docker.io/openswoolebundle/release-version-script-cache:releaser,mode=max"]
2424
output = ["type=registry"]
2525
tags = TAG_LATEST == "" ? [
2626
"${REGISTRY}/${NAMESPACE}/${IMAGE}:${TAG}",

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ version: "3.8"
22

33
services:
44
releaser:
5-
image: "${REGISTRY:-docker.io}/${NAMESPACE:-pixelfederation}/${IMAGE:-release-version-script}:${TAG:-local}"
5+
image: "${REGISTRY:-docker.io}/${NAMESPACE:-openswoolebundle}/${IMAGE:-release-version-script}:${TAG:-local}"
66
build:
77
context: .
88
args:
99
NODE_TAG: "${NODE_VERSION:-15}-alpine${ALPINE_VERSION:-3.13}"
1010
environment:
1111
DEBUG: "${DEBUG:-1}"
1212
DRY_RUN: "${DRY_RUN:-1}"
13-
GH_REPOSITORY: "${GH_REPOSITORY:-pixelfederation/release-version-script}"
13+
GH_REPOSITORY: "${GH_REPOSITORY:-openswoolebundle/release-version-script}"
1414
GH_COMMITER_NAME: "${GH_COMMITER_NAME:-swoole-bundle-bot}"
1515
GH_COMMITER_EMAIL: "${GH_COMMITER_EMAIL:[email protected]}"
1616
GH_TOKEN: "${GH_TOKEN:-xxxxxxxx}"

release-version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ fi
2525
# Set GH env variables
2626
GH_COMMITER_NAME="${GH_COMMITER_NAME:-swoole-bundle-bot}"
2727
GH_COMMITER_EMAIL="${GH_COMMITER_EMAIL:-swoolebundle@gmail.com}"
28-
GH_REPOSITORY="${GH_REPOSITORY:-pixelfederation/swoole-bundle}"
28+
GH_REPOSITORY="${GH_REPOSITORY:-openswoolebundle/swoole-bundle}"
2929
GH_TOKEN="${GH_TOKEN:?"Provide \"GH_TOKEN\" variable with GitHub Personal Access Token"}"
3030

3131
# Configure git

0 commit comments

Comments
 (0)