Skip to content

Commit c50a5d6

Browse files
authored
Merge pull request #1907 from umputun/paskal/get_rid_of_dockerhub
Migrate Docker images from Docker Hub to GitHub Container Registry
2 parents 2e00002 + bb650d7 commit c50a5d6

File tree

12 files changed

+13
-13
lines changed

12 files changed

+13
-13
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ bin:
1111
docker rm -f remark42.bin
1212

1313
docker:
14-
DOCKER_BUILDKIT=1 docker build -t umputun/remark42 --build-arg GITHUB_REF=$(GITHUB_REF) --build-arg GITHUB_SHA=$(GITHUB_SHA) \
14+
DOCKER_BUILDKIT=1 docker build -t umputun/remark42 -t ghcr.io/umputun/remark42 --build-arg GITHUB_REF=$(GITHUB_REF) --build-arg GITHUB_SHA=$(GITHUB_SHA) \
1515
--build-arg CI=true --build-arg SKIP_FRONTEND_TEST=true --build-arg SKIP_BACKEND_TEST=true .
1616

1717
dockerx:

backend/_example/memory_store/compose-dev-memstore.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ services:
1111
args:
1212
- SKIP_BACKEND_TEST=true
1313
- SKIP_FRONTEND_TEST=true
14-
image: umputun/remark42:dev
14+
image: ghcr.io/umputun/remark42:dev
1515
container_name: "remark42-dev"
1616
hostname: "remark42-dev"
1717
restart: always

compose-dev-backend.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ services:
1818
- CI
1919
- GITHUB_REF
2020
- GITHUB_SHA
21-
image: umputun/remark42:dev
21+
image: ghcr.io/umputun/remark42:dev
2222
container_name: "remark42-dev"
2323
hostname: "remark42-dev"
2424

compose-dev-frontend.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ services:
1616
- SKIP_FRONTEND_BUILD=true
1717
# - NODE_ENV=development
1818

19-
image: umputun/remark42:dev
19+
image: ghcr.io/umputun/remark42:dev
2020
container_name: "remark42-dev"
2121
hostname: "remark42-dev"
2222

compose-e2e-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
- SKIP_BACKEND_TEST=true
1111
- SKIP_FRONTEND_TEST=true
1212

13-
image: umputun/remark42:dev
13+
image: ghcr.io/umputun/remark42:dev
1414
container_name: "remark42"
1515

1616
environment:

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
# remove the next line in case you want to use this Docker Compose file separately
66
# as otherwise it would complain for absence of Dockerfile
77
build: .
8-
image: umputun/remark42:latest
8+
image: ghcr.io/umputun/remark42:latest
99
container_name: "remark42"
1010
hostname: "remark42"
1111
restart: always

site/src/docs/configuration/parameters/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ version: "2"
1717

1818
services:
1919
remark42:
20-
image: umputun/remark42:latest
20+
image: ghcr.io/umputun/remark42:latest
2121
restart: always
2222
container_name: "remark42"
2323
environment:

site/src/docs/contributing/backend/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ In order to have working Remark42 installation you need once to copy frontend st
3636

3737
```shell
3838
# frontend files
39-
docker pull umputun/remark42:master
40-
docker create -ti --name remark42files umputun/remark42:master sh
39+
docker pull ghcr.io/umputun/remark42:master
40+
docker create -ti --name remark42files ghcr.io/umputun/remark42:master sh
4141
docker cp remark42files:/srv/web/ ./backend/app/cmd/
4242
docker rm -f remark42files
4343
# fix frontend files to point to the right URL

site/src/docs/getting-started/installation/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,5 +76,5 @@ To verify if Remark42 has been properly installed, check a demo page at `${REMAR
7676

7777
### Build from the source
7878

79-
- to build Docker container - `make docker`. This command will produce container `umputun/remark42`
79+
- to build Docker container - `make docker`. This command will produce container `ghcr.io/umputun/remark42`
8080
- to build a single binary for direct execution - `make OS=<linux|windows|darwin> ARCH=<amd64|386>`. This step will produce an executable `remark42` file with everything embedded

site/src/docs/manuals/kubernetes/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ spec:
3333
spec:
3434
containers:
3535
- name: remark42
36-
image: umputun/remark42:v1.8.1
36+
image: ghcr.io/umputun/remark42:v1.14.0
3737
ports:
3838
# http:
3939
- containerPort: 8080

site/src/docs/manuals/reproxy/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ services:
4343
- ./var/logs:/srv/var/logs
4444

4545
remark42:
46-
image: umputun/remark42:master
46+
image: ghcr.io/umputun/remark42:master
4747
container_name: "remark42"
4848
hostname: "remark42"
4949
restart: always

site/src/docs/manuals/subdomain/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Example `docker-compose.yml`:
2525
version: "2"
2626
services:
2727
remark42:
28-
image: umputun/remark42:latest
28+
image: ghcr.io/umputun/remark42:latest
2929
container_name: remark42
3030
restart: always
3131
environment:

0 commit comments

Comments
 (0)