GitHub repo for server images to use for local development with SteeltoeOSS.
List the created images:
docker images
See the docker instructions on how to run the various docker images.
Name | Description |
---|---|
Spring Cloud Config Server |
|
Netflix Eureka Server |
|
Spring Boot Admin |
|
CloudFoundry UAA Server |
Via StackOverflow, here are the commands to list files in a stopped container.
-
Find the id of the stopped container
-
docker ps -a
-
-
Commit the stopped container to a new image: test_image.
-
docker commit $CONTAINER_ID test_image
-
-
Run the new image in a new container with a shell.
-
docker run -ti --entrypoint=sh test_image
-