From be0f801152a384e2290696d6b5429f8cc87718ee Mon Sep 17 00:00:00 2001 From: Mike Cunningham Date: Tue, 12 Sep 2023 11:02:14 -0700 Subject: [PATCH] Update docker-compose.md fix path error for restAPI image --- docs/docker-compose.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/docker-compose.md b/docs/docker-compose.md index 23e3c584..263b2195 100644 --- a/docs/docker-compose.md +++ b/docs/docker-compose.md @@ -36,10 +36,12 @@ docker-compose up This command will build all of the necessary Docker images and run the corresponding Docker containers. ### Using pre-built images -1. Use the following commands to pull the images from the Github Container Registry. Replace the image tag with the version number you are using. +1. Use the following commands to pull the images from the Github Container Registry. Replace the image tag with the version number you are using. If no image is specified, `latest` will be pulled. ``` docker pull ghcr.io/center-for-threat-informed-defense/attack-workbench-frontend: -docker pull ghcr.io/center-for-threat-informed-defense/attack-workbench-frontend-rest-api: +``` +``` +docker pull ghcr.io/center-for-threat-informed-defense/attack-workbench-rest-api: ``` 2. Navigate to the `attack-workbench-frontend` directory, and modify the `docker-compose.yml` file. Replace the `build` attribute with the corresponding `image`. ```