Base projects of Spring Boot and Angular UI. Built to understand Docker and Docker Compose and communication between docker containers
-- Build Server image
docker build -t demo.
-- Run Service image
docker run --name demo -p 8080:8080 -t demo
-- Inspect Docker container to find ip address to configure in UI
docker inspect -f "{{ .NetworkSettings.IPAddress }}"
-- Build Client image
docker build -t demo-ui .
-- Run Client image
docker run --name demo-ui -p 4200:80 -t demo-ui:latest
docker-compose up