Skip to content

Commit

Permalink
forgot image names have to be lowercase.
Browse files Browse the repository at this point in the history
  • Loading branch information
laceysanderson committed Mar 31, 2024
1 parent 5702be3 commit a8480a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mkdocs/docs/install/docker-demo.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down

0 comments on commit a8480a9

Please sign in to comment.