aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Gibby <git@twoitguys>2022-04-16 16:37:41 -0400
committerLibravatar Gibby <git@twoitguys>2022-04-16 16:37:41 -0400
commitb1879af6dd255f6ff09b2a409cf3daeccc3d90e6 (patch)
tree5343ab82ae11ad8f70a34b8319c07e090378d3ec
parentfix: Updated recipe submodule and workflow to build/publish docker image (diff)
downloadferdium-server-b1879af6dd255f6ff09b2a409cf3daeccc3d90e6.tar.gz
ferdium-server-b1879af6dd255f6ff09b2a409cf3daeccc3d90e6.tar.zst
ferdium-server-b1879af6dd255f6ff09b2a409cf3daeccc3d90e6.zip
docs: Update to point to correct docker image
-rw-r--r--README.md4
-rw-r--r--docker/README.md8
-rw-r--r--docker/docker-compose.yml2
3 files changed, 7 insertions, 7 deletions
diff --git a/README.md b/README.md
index 773bf91..da67952 100644
--- a/README.md
+++ b/README.md
@@ -48,7 +48,7 @@ After setting up the docker container we recommend you set up an NGINX reverse p
481. Pull the Docker image 481. Pull the Docker image
49 49
50 ```sh 50 ```sh
51 docker pull getferdi/ferdi-server 51 docker pull ghcr.io/ferdium/ferdium-server
52 ``` 52 ```
532. Create a *new* Docker container with your desired configuration **Existing users please seee the warning above.** 532. Create a *new* Docker container with your desired configuration **Existing users please seee the warning above.**
54 54
@@ -80,7 +80,7 @@ After setting up the docker container we recommend you set up an NGINX reverse p
80 -v <path to data>:/data \ 80 -v <path to data>:/data \
81 -v <path to recipes>:/app/recipes \ 81 -v <path to recipes>:/app/recipes \
82 --restart unless-stopped \ 82 --restart unless-stopped \
83 getferdi/ferdi-server 83 ghcr.io/ferdium/ferdium-server
84 ``` 84 ```
85 85
86 Alternatively, you can also use docker-compose v2 schema. An example can be found [in the docker folder](./docker/docker-compose.yml). 86 Alternatively, you can also use docker-compose v2 schema. An example can be found [in the docker folder](./docker/docker-compose.yml).
diff --git a/docker/README.md b/docker/README.md
index 3cb49be..fa36da9 100644
--- a/docker/README.md
+++ b/docker/README.md
@@ -28,7 +28,7 @@ The docker can be run as is, with the default sqlite database, or you can modify
28 28
29Pull the docker image: 29Pull the docker image:
30 30
31 docker pull getferdi/ferdi-server 31 docker pull ghcr.io/ferdium/ferdium-server
32 32
33To create the docker container with the proper parameters: 33To create the docker container with the proper parameters:
34 34
@@ -59,7 +59,7 @@ To create the docker container with the proper parameters:
59 -v <path to data>:/data \ 59 -v <path to data>:/data \
60 -v <path to recipes>:/app/recipes \ 60 -v <path to recipes>:/app/recipes \
61 --restart unless-stopped \ 61 --restart unless-stopped \
62 getferdi/ferdi-server 62 ghcr.io/ferdium/ferdium-server
63 63
64### docker-compose 64### docker-compose
65 65
@@ -212,7 +212,7 @@ Below are the instructions for updating the container to get the most recent ver
212 212
213### Via Docker Run/Create 213### Via Docker Run/Create
214 214
215* Update the image: `docker pull getferdi/ferdi-server` 215* Update the image: `docker pull ghcr.io/ferdium/ferdium-server`
216* Stop the running container: `docker stop ferdi-server` 216* Stop the running container: `docker stop ferdi-server`
217* Delete the container: `docker rm ferdi-server` 217* Delete the container: `docker rm ferdi-server`
218* Recreate a new container with the same docker create parameters as instructed above (if mapped correctly to a host folder, your `/config` folder and ENV settings will be preserved) 218* Recreate a new container with the same docker create parameters as instructed above (if mapped correctly to a host folder, your `/config` folder and ENV settings will be preserved)
@@ -232,7 +232,7 @@ If you want to build this image locally, please run this command from root of [F
232docker build \ 232docker build \
233 --no-cache \ 233 --no-cache \
234 --pull \ 234 --pull \
235 -t getferdi/ferdi-server:latest . 235 -t ghcr.io/ferdium/ferdium-server:latest .
236``` 236```
237 237
238## License 238## License
diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml
index 4902331..5a46cda 100644
--- a/docker/docker-compose.yml
+++ b/docker/docker-compose.yml
@@ -1,7 +1,7 @@
1version: "2" 1version: "2"
2services: 2services:
3 ferdi-server: 3 ferdi-server:
4 image: getferdi/ferdi-server 4 image: ghcr.io/ferdium/ferdium-server
5 container_name: ferdi-server 5 container_name: ferdi-server
6 environment: 6 environment:
7 - NODE_ENV=development 7 - NODE_ENV=development