aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar André Oliveira <37463445+SpecialAro@users.noreply.github.com>2022-05-03 19:58:53 +0100
committerLibravatar GitHub <noreply@github.com>2022-05-03 19:58:53 +0100
commit73576605cd1c9326f3347406ce0c0ceac9c73ccb (patch)
treee6a6ead245c4dd14c49bd64e1a5d9a15161072a4
parentRenamed 'master' branch to 'main' (diff)
downloadferdium-server-73576605cd1c9326f3347406ce0c0ceac9c73ccb.tar.gz
ferdium-server-73576605cd1c9326f3347406ce0c0ceac9c73ccb.tar.zst
ferdium-server-73576605cd1c9326f3347406ce0c0ceac9c73ccb.zip
Update docker image to the latest on the DockerHub (#22)v1.3.3
-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 0031e5f..1a9a6d4 100644
--- a/README.md
+++ b/README.md
@@ -46,7 +46,7 @@ After setting up the docker container we recommend you set up an NGINX reverse p
461. Pull the Docker image 461. Pull the Docker image
47 47
48 ```sh 48 ```sh
49 docker pull ghcr.io/ferdium/ferdium-server 49 docker pull ferdium/ferdium-server:latest
50 ``` 50 ```
512. Create a *new* Docker container with your desired configuration **Existing users please seee the warning above.** 512. Create a *new* Docker container with your desired configuration **Existing users please seee the warning above.**
52 52
@@ -78,7 +78,7 @@ After setting up the docker container we recommend you set up an NGINX reverse p
78 -v <path to data>:/data \ 78 -v <path to data>:/data \
79 -v <path to recipes>:/app/recipes \ 79 -v <path to recipes>:/app/recipes \
80 --restart unless-stopped \ 80 --restart unless-stopped \
81 ghcr.io/ferdium/ferdium-server 81 ferdium/ferdium-server:latest
82 ``` 82 ```
83 83
84 Alternatively, you can also use docker-compose v2 schema. An example can be found [in the docker folder](./docker/docker-compose.yml). 84 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 2db02cb..0051ac5 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 ghcr.io/ferdium/ferdium-server 31 docker pull ferdium/ferdium-server:latest
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 ghcr.io/ferdium/ferdium-server 62 ferdium/ferdium-server:latest
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 ghcr.io/ferdium/ferdium-server` 215* Update the image: `docker pull ferdium/ferdium-server:latest`
216* Stop the running container: `docker stop ferdium-server` 216* Stop the running container: `docker stop ferdium-server`
217* Delete the container: `docker rm ferdium-server` 217* Delete the container: `docker rm ferdium-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 ghcr.io/ferdium/ferdium-server:latest . 235 -t 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 757717a..d2985d3 100644
--- a/docker/docker-compose.yml
+++ b/docker/docker-compose.yml
@@ -1,7 +1,7 @@
1version: "2" 1version: "2"
2services: 2services:
3 ferdium-server: 3 ferdium-server:
4 image: ghcr.io/ferdium/ferdium-server 4 image: ferdium/ferdium-server:latest
5 container_name: ferdium-server 5 container_name: ferdium-server
6 environment: 6 environment:
7 - NODE_ENV=development 7 - NODE_ENV=development