You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Modify the url and certPath properties in the docker section of the build.gradle file to point to your Docker machine.
Build the image with: ./gradlew clean buildDockerImage
If you want to override the version of the image built, use: ./gradlew -Pversion=_VERSION_ clean buildDockerImage
To run
Ensure that the rest-o-rant-api Docker container is running and is called rest-o-rant-api.
Run the Docker image built in the previous step by executing: docker run -dP --link rest-o-rant-api --name rest-o-rant-web dkr-reg:5000/rest-o-rant-web:v1
To access
Check the port at which port 80 is exposed by running docker ps.
Open http://<DOCKER>:<PORT>/findrestaurants.
See the JSON result.
About
AngularJS frontend for the REST-o-RANT demo application