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/Installation.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ title: Installation
5
5
6
6
Docker is Maintainerr's supported method of installation.
7
7
8
-
Images for amd64 & arm64 are available under `jorenn92/maintainerr` and `ghcr.io/jorenn92/maintainerr`.
8
+
Images for amd64 & arm64 are available under `jorenn92/maintainerr` and `ghcr.io/maintainerr/maintainerr`.
9
9
The containers data location is set as /opt/data. A Docker [volume][tooltip] is strongly encouraged to persist your configuration.
10
10
11
11
[tooltip]: https://docs.docker.com/storage/volumes/#start-a-container-with-a-volume"Click here to be taken to the Docker documentation page on volumes."
@@ -47,7 +47,7 @@ Setting the host data directory largely depends on how you are installing Mainta
47
47
-u 1000:1000 \
48
48
-p 6246:6246 \ # (1)!
49
49
--restart unless-stopped \
50
-
ghcr.io/jorenn92/maintainerr:latest # (2)!
50
+
ghcr.io/maintainerr/maintainerr:latest # (2)!
51
51
```
52
52
53
53
1. This is defined as `host:container`.
@@ -59,7 +59,7 @@ Setting the host data directory largely depends on how you are installing Mainta
59
59
60
60
Changing from a development version to a stable version is not supported.
61
61
62
-
- `ghcr.io/jorenn92/maintainerr:main` for the develop branch
62
+
- `ghcr.io/maintainerr/maintainerr:main` for the develop branch
63
63
- `jorenn92/maintainerr:main` for the Docker Hub development image.
<picture><imgalt="GitHub commits since latest release"src="https://img.shields.io/github/commits-since/jorenn92/maintainerr/latest?style=flat&logo=github&logoColor=white"></picture>
<picture><imgalt="GitHub commits since latest release"src="https://img.shields.io/github/commits-since/maintainerr/maintainerr/latest?style=flat&logo=github&logoColor=white"></picture>
<picture><imgalt="GitHub Issues or Pull Requests"src="https://img.shields.io/github/issues-closed/jorenn92/maintainerr?style=flat&logo=github&logoColor=white"></picture>
15
-
<picture><imgalt="GitHub Issues or Pull Requests"src="https://img.shields.io/github/issues/jorenn92/maintainerr?style=flat&logo=github&logoColor=white"></picture>
<picture><imgalt="GitHub Issues or Pull Requests"src="https://img.shields.io/github/issues-closed/maintainerr/maintainerr?style=flat&logo=github&logoColor=white"></picture>
15
+
<picture><imgalt="GitHub Issues or Pull Requests"src="https://img.shields.io/github/issues/maintainerr/maintainerr?style=flat&logo=github&logoColor=white"></picture>
Copy file name to clipboardExpand all lines: docs/Testing.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ We have implemented a way to test a specific pull request (new feature), using *
13
13
14
14
### Install Method
15
15
16
-
In order to test these PR images, a dev would first need to create one. After the image is created, you can see its image name at the GHCR link here -> [GHCR images](https://github.com/jorenn92/Maintainerr/pkgs/container/maintainerr). Again, Docker is the only method for testing these images.
16
+
In order to test these PR images, a dev would first need to create one. After the image is created, you can see its image name at the GHCR link here -> [GHCR images](https://github.com/Maintainerr/Maintainerr/pkgs/container/maintainerr). Again, Docker is the only method for testing these images.
17
17
18
18
### Getting Started
19
19
@@ -34,7 +34,7 @@ You can run the PR image using either docker run, or docker compose. Compose is
34
34
-u 1000:1000 \
35
35
-p <9999>:6246 \
36
36
--restart unless-stopped \
37
-
ghcr.io/jorenn92/maintainerr:<pr-#>
37
+
ghcr.io/maintainerr/maintainerr:<pr-#>
38
38
```
39
39
40
40
#### Docker Compose
@@ -43,7 +43,7 @@ You can run the PR image using either docker run, or docker compose. Compose is
43
43
services:
44
44
maintainerr-testing:
45
45
container_name: maintainerr-testing
46
-
image: ghcr.io/jorenn92/maintainerr:<pr-#>
46
+
image: ghcr.io/maintainerr/maintainerr:<pr-#>
47
47
user: 1000:1000
48
48
volumes:
49
49
- <your-testing-host-directory>:/opt/data
@@ -60,7 +60,7 @@ Remember, we need your feedback! Take a look at what the PR is for, what feature
0 commit comments