You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/getting_started.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,8 +11,8 @@ This guide will show you how to quickly resize your first image using imgproxy.
11
11
Let's assume you already have Docker installed on your machine — you can pull an official imgproxy Docker image, and you’re done!
12
12
13
13
```bash
14
-
docker pull darthsim/imgproxy:latest
15
-
docker run -p 8080:8080 -it darthsim/imgproxy
14
+
docker pull ghcr.io/imgproxy/imgproxy:latest
15
+
docker run -p 8080:8080 -it ghcr.io/imgproxy/imgproxy:latest
16
16
```
17
17
18
18
If you don't have docker or if you want to deploy imgproxy to a cloud, you can check out our [installation guide](./installation.mdx) for more installation options.
Copy file name to clipboardExpand all lines: docs/installation.mdx
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,11 +8,11 @@ There are multiple ways you can install imgproxy:
8
8
9
9
## Docker
10
10
11
-
imgproxy can (and this is highly recommended) be used as a standalone application inside a Docker container. Just pull the official image from Docker Hub:
11
+
imgproxy can (and this is highly recommended) be used as a standalone application inside a Docker container. Just pull the official image from GitHub Container Registry:
12
12
13
13
```bash
14
-
docker pull darthsim/imgproxy:latest
15
-
docker run -p 8080:8080 -it darthsim/imgproxy
14
+
docker pull ghcr.io/imgproxy/imgproxy:latest
15
+
docker run -p 8080:8080 -it ghcr.io/imgproxy/imgproxy:latest
16
16
```
17
17
18
18
You can also build your own image. imgproxy is ready to be dockerized out of the box:
@@ -62,8 +62,8 @@ heroku create your-application
62
62
heroku stack:set container -a your-application
63
63
heroku container:login
64
64
# Replace "v3" with the imgproxy version you want to deploy
65
-
docker pull darthsim/imgproxy:v3-amd64
66
-
docker tag darthsim/imgproxy:v3-amd64 registry.heroku.com/your-application/web
65
+
docker pull ghcr.io/imgproxy/imgproxy:v3-amd64
66
+
docker tag ghcr.io/imgproxy/imgproxy:v3-amd64 registry.heroku.com/your-application/web
@@ -95,11 +95,11 @@ imgproxy can be deployed to [Dome](https://trydome.io/) with the click of a butt
95
95
We don't provide packages for imgproxy yet, but you can use the `imgproxy-build-package` script to export a DEB, RPM, or TAR package from a Docker image:
96
96
97
97
```bash
98
-
docker run -u0 --rm -it -v $(pwd):/dist darthsim/imgproxy:latest-amd64 imgproxy-build-package deb /dist
98
+
docker run -u0 --rm -it -v $(pwd):/dist ghcr.io/imgproxy/imgproxy:latest-amd64 imgproxy-build-package deb /dist
99
99
```
100
100
101
101
Where:
102
-
*`darthsim/imgproxy:latest-amd64` is the imgproxy Docker image you want to export the package from. Take note that we used the `-amd64` suffix in the image tag. This suffix ensures that the image built for the `AMD64` CPU architecture will be used. If you're using an `ARM64` CPU, you should replace the `-amd64` suffix with `-arm64`.
102
+
*`ghcr.io/imgproxy/imgproxy:latest-amd64` is the imgproxy Docker image you want to export the package from. Take note that we used the `-amd64` suffix in the image tag. This suffix ensures that the image built for the `AMD64` CPU architecture will be used. If you're using an `ARM64` CPU, you should replace the `-amd64` suffix with `-arm64`.
103
103
*`$(pwd)` is the directory on your host machine where the package will be saved. `$(pwd)` is a shell command that returns the current working directory. You can replace it with the path to the directory where you want to save the package.
104
104
*`deb` is the package format you want to export. You can replace it with `rpm` or `tar` to export an RPM or TAR package.
Copy file name to clipboardExpand all lines: versioned_docs/version-3.19.x/getting_started.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,8 +11,8 @@ This guide will show you how to quickly resize your first image using imgproxy.
11
11
Let's assume you already have Docker installed on your machine — you can pull an official imgproxy Docker image, and you’re done!
12
12
13
13
```bash
14
-
docker pull darthsim/imgproxy:latest
15
-
docker run -p 8080:8080 -it darthsim/imgproxy
14
+
docker pull ghcr.io/imgproxy/imgproxy:latest
15
+
docker run -p 8080:8080 -it ghcr.io/imgproxy/imgproxy:latest
16
16
```
17
17
18
18
If you don't have docker or if you want to deploy imgproxy to a cloud, you can check out our [installation guide](./installation.mdx) for more installation options.
0 commit comments