Skip to content

SteeltoeOSS/Dockerfiles

SteeltoeOSS Docker Images

GitHub repo for SteeltoeOSS Docker images.

Building

Build a specific image:
./build.ps1 config-server

Running

List the created images:
docker images

See the docker instructions on how to run the various docker images.

Images

Name Description

steeltoeoss/config-server

Spring Cloud Config Server

steeltoeoss/eureka-server

Netflix Eureka Server

steeltoeoss/spring-boot-admin

Spring Boot Admin

steeltoeoss/uaa-server

CloudFoundry UAA Server

Debug Image Building

Via StackOverflow, here are the commands to list files in a stopped container.

  1. Find the id of the stopped container

    • docker ps -a

  2. Commit the stopped container to a new image: test_image.

    • docker commit $CONTAINER_ID test_image

  3. Run the new image in a new container with a shell.

    • docker run -ti --entrypoint=sh test_image