aboutsummaryrefslogtreecommitdiffstats
path: root/docker
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 /docker
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
Diffstat (limited to 'docker')
-rw-r--r--docker/README.md8
-rw-r--r--docker/docker-compose.yml2
2 files changed, 5 insertions, 5 deletions
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