From a8480a9fae2e189cae04d46ba9e978ffcc444b7b Mon Sep 17 00:00:00 2001 From: Lacey Sanderson Date: Sun, 31 Mar 2024 14:22:32 -0600 Subject: [PATCH] forgot image names have to be lowercase. --- mkdocs/docs/install/docker-demo.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mkdocs/docs/install/docker-demo.md b/mkdocs/docs/install/docker-demo.md index a231155..e44be6f 100644 --- a/mkdocs/docs/install/docker-demo.md +++ b/mkdocs/docs/install/docker-demo.md @@ -42,12 +42,12 @@ git checkout -b my-feature-or-fix ``` 4. Build the docker demonstration image. ``` -docker build --tag=tripalBlast:local ./ +docker build --tag=tripalblast:local ./ ``` 5. Create a container from the previous image in your current directory. The `--volume` part of this command will mount your current directory to the appropriate place inside the container. ``` -docker run --publish=80:80 -tid --name=tripalBlast --volume=`pwd`:/var/www/drupal/web/modules/contrib/tripal_blast tripalBlast:local -docker exec tripalBlast service postgresql restart +docker run --publish=80:80 -tid --name=tripalblast --volume=`pwd`:/var/www/drupal/web/modules/contrib/tripal_blast tripalblast:local +docker exec tripalblast service postgresql restart ``` Now you can interact with the Tripal site in your browser in all the same ways you would a regular Tripal site by going to https://localhost and logging in using the [Administrative username and password for the Tripal Docker](https://tripaldoc.readthedocs.io/en/latest/install/docker.html#development-site-information).