This repository has been archived by the owner on Mar 25, 2023. It is now read-only.
-
OS: Windows In Docker Desktop after following the setup instructions: This doesn't start books-api, so you cannot access the graphiql interactive environment |
Beta Was this translation helpful? Give feedback.
Answered by
knjk04
Dec 28, 2021
Replies: 1 comment
-
Run (Get-Content ./docker/bin/start.sh -raw) | % {$_ -replace "`r", ""} | Set-Content -NoNewline ./docker/bin/start.sh in Powershell inside the books-api root directory. Next, rebuild the image: Lastly, generate an container of the refreshed image: Credit: #139 (comment) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
knjk04
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Run (Get-Content ./docker/bin/start.sh -raw) | % {$_ -replace "`r", ""} | Set-Content -NoNewline ./docker/bin/start.sh in Powershell inside the books-api root directory.
Next, rebuild the image:
docker-compose build --build-arg mvn_arg="clean package -DskipTests"
Lastly, generate an container of the refreshed image:
docker-compose up booksapi
Credit: #139 (comment)