Apply minor readability changes in example

This commit is contained in:
Zedifus 2021-08-30 04:19:23 +01:00
parent 96595d02e3
commit 5cf58a0238

View File

@ -19,14 +19,14 @@ Git Repository - https://gitlab.com/crafty-controller/crafty-web
## Basic Docker Usage
A Docker image pipeline is still to be implimented but for example you can expect the image to be located: `crafty/crafty-commander` and you would change the image in the below docker run to this image.
A Docker image pipeline is still to be implimented but for example you can expect the image to be located: `crafty/cc-dashboard` and you would change the image in the below docker run to this image.
If you are building from the `docker-compose` you can find it in `./docker/docker-compose.yml` just cd to the docker directory and `docker-compose up -d`
If you are building from the `docker-compose` you can find it in `./docker/docker-compose.yml` just `cd` to the docker directory and `docker-compose up -d`
If you'd rather not use `docker-compose` you can use the following `docker run`:
```
$ docker build . -t crafty-commander
$ docker build . -t cc-dashboard
# REMEMBER, Build your image!
$ docker run \
--name crafty_commander \
@ -39,7 +39,7 @@ $ docker run \
-v "/$(pwd)/docker/logs:/commander/logs" \
-v "/$(pwd)/docker/servers:/commander/servers" \
-v "/$(pwd)/docker/config:/commander/app/config" \
crafty-commander
cc-dashboard
```
A fresh build will take several minutes depending on your system, but will be rapid there after.