Skip to content

Commit 13fd758

Browse files
committed
chore: change all refs to docker hub
1 parent 0892e99 commit 13fd758

File tree

7 files changed

+26
-22
lines changed

7 files changed

+26
-22
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<a href="https://github.com/ignisda/ryot/blob/main/LICENSE">
1616
<img alt="License" src="https://img.shields.io/badge/license-GPLv3-purple">
1717
</a>
18-
<a href="https://github.com/IgnisDa/ryot/pkgs/container/ryot">
19-
<img alt="Image size" src="https://ghcr-badge.egpl.dev/ignisda/ryot/size">
18+
<a href="https://hub.docker.com/r/ignisda/ryot">
19+
<img alt="Image size" src="https://img.shields.io/docker/image-size/ignisda/ryot">
2020
</a>
2121
</div>
2222

apps/backend/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ryot"
3-
version = "6.1.4"
3+
version = "6.1.5"
44
edition = "2021"
55
repository = "https://github.com/IgnisDa/ryot"
66
license = "GPL-3.0"

ci/fly.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ app = "ryot"
22
primary_region = "ord"
33

44
[build]
5-
image = "ghcr.io/ignisda/ryot:latest"
5+
image = "ignisda/ryot:latest"
66

77
[http_service]
88
internal_port = 8000

docs/content/deployment.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,11 @@ is a non-exhaustive set of guides to deploy Ryot to alternative platforms.
88
1. Click on "+ New Project" on your dashboard and select "Empty project".
99
2. Once the project is created click on "+ New" and select "Database" and then
1010
"Add PostgreSQL".
11-
3. Click on "+ New" again and select "Docker Image". Type `ghcr.io/ignisda/ryot`
12-
and hit Enter.
11+
3. Click on "+ New" again and select "Docker Image". Type `ignisda/ryot` and hit Enter.
1312
4. Click on the newly created service and go to the "Variables" section. Click on
1413
"New Variable" and then "Add Reference". Click on "Add".
1514
5. Go to the "Settings" tab and then click on "Generate Domain".
16-
6. Optionally, you can set the [healthcheck](https://docs.railway.app/deploy/healthchecks)
15+
6. Optionally, you can set the [health-check](https://docs.railway.app/deploy/healthchecks)
1716
path to `/backend/config`.
1817

1918
## Dokku
@@ -35,7 +34,7 @@ if [ "$EUID" -ne 0 ]
3534
exit
3635
fi
3736

38-
IMAGE_NAME="ghcr.io/ignisda/ryot"
37+
IMAGE_NAME="ignisda/ryot"
3938
APPNAME=""
4039

4140
read -rp "Enter the name of the app: " APPNAME

docs/content/index.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,15 @@
44

55
The first user you register is automatically set as admin of the instance.
66

7-
The docker image is `ghcr.io/ignisda/ryot:latest`.
7+
The docker image is `ignisda/ryot-pro`. Images are also available on the Github Container
8+
Registry as `ghcr.io/ignisda/ryot-pro`.
9+
10+
To know more about the pro version, visit the [website](https://ryot.io).
811

912
```yaml
1013
services:
1114
ryot-db:
12-
image: postgres:16-alpine # atleast version 15 is required
15+
image: postgres:16-alpine # at-least version 15 is required
1316
restart: unless-stopped
1417
volumes:
1518
- postgres_storage:/var/lib/postgresql/data
@@ -20,9 +23,10 @@ services:
2023
container_name: ryot-db
2124

2225
ryot:
23-
image: ghcr.io/ignisda/ryot:latest
26+
image: ignisda/ryot-pro:latest # or ignisda/ryot:latest for the community version
2427
environment:
2528
- DATABASE_URL=postgres://postgres:postgres@ryot-db:5432/postgres
29+
- SERVER_PRO_KEY=<pro_key_issued_to_you> # if using the pro version
2630
# - FRONTEND_INSECURE_COOKIES=true # if running on HTTP
2731
ports:
2832
- "8000:8000"

docs/content/migration.md

+11-10
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,27 @@ order.
1111
[docs](./integrations.md) for the new webhook format.
1212

1313
1. Upgrade the server to `v5.5.6` to make sure all `v5` migrations are applied. For
14-
example, you can make this change: `image: "ghcr.io/ignisda/ryot:v5.5.6"` in your
15-
docker-compose file.
14+
example, you can make this change: `image: "ignisda/ryot:v5.5.6"` in your docker-compose
15+
file.
1616

1717
2. Create a backup of your database. [Here](./guides/exporting.md#exporting-the-entire-database)
1818
is a guide on how to do this.
1919

2020
3. Now you can upgrade to the latest version (`v6.*`). For example you can make this
21-
change: `image: "ghcr.io/ignisda/ryot:latest"` in your docker-compose file. This will
21+
change: `image: "ignisda/ryot:latest"` in your docker-compose file. This will
2222
automatically apply all migrations.
2323

2424
## From `v4.*` to `v5.*`
2525

2626
1. Upgrade the server to `v4.4.3` to make sure all `v4` migrations are applied. For
27-
example, you can make this change: `image: "ghcr.io/ignisda/ryot:v4.4.3"` in your
28-
docker-compose file.
27+
example, you can make this change: `image: "ignisda/ryot:v4.4.3"` in your docker-compose
28+
file.
2929

3030
2. Create a backup of your database. [Here](./guides/exporting.md#exporting-the-entire-database)
3131
is a guide on how to do this.
3232

3333
3. Now you can upgrade to the latest version (`v5.*`). For example you can make this
34-
change: `image: "ghcr.io/ignisda/ryot:latest"` in your docker-compose file. This will
34+
change: `image: "ignisda/ryot:latest"` in your docker-compose file. This will
3535
automatically apply all migrations.
3636

3737
## From `v3.*` to `v4.*`
@@ -42,8 +42,9 @@ order.
4242
prefix. Please take a look at the [integration](./integrations.md#sink-integrations) docs for the
4343
new format.
4444

45-
1. Upgrade the server to `v3.5.4` to make sure all pending migrations are applied. For example,
46-
you can make this change: `image: "ghcr.io/ignisda/ryot:v3.5.4"` in your docker-compose file.
45+
1. Upgrade the server to `v3.5.4` to make sure all pending migrations are applied. For
46+
example, you can make this change: `image: "ignisda/ryot:v3.5.4"` in your docker-compose
47+
file.
4748

4849
2. Go to the "Preferences" settings, then the "General" tab, and click on "Disable yank
4950
integrations" twice. This will ensure that latest preferences have been applied.
@@ -85,7 +86,7 @@ order.
8586
```
8687

8788
8. Now you can upgrade to the latest version (`v4.*`) safely. For example you can make this
88-
change: `image: "ghcr.io/ignisda/ryot:latest"` in your docker-compose file.
89+
change: `image: "ignisda/ryot:latest"` in your docker-compose file.
8990

9091
## From `v2.*` to `v3.*`
9192

@@ -131,7 +132,7 @@ order.
131132

132133
2. Run the last release of the server to perform all migrations (make sure to connect it to the correct database).
133134
```bash
134-
$ docker run --volume ./ryot/data:/data ghcr.io/ignisda/ryot:v1.22.1
135+
$ docker run --volume ./ryot/data:/data ignisda/ryot:v1.22.1
135136
```
136137

137138
3. Once the migrations from the above step are done, stop the server.

0 commit comments

Comments
 (0)