https://github.com/steeltoeoss/dockerfiles
https://github.com/steeltoeoss/dockerfiles
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/steeltoeoss/dockerfiles
- Owner: SteeltoeOSS
- License: apache-2.0
- Created: 2016-08-29T20:31:43.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2025-02-24T15:02:14.000Z (about 1 year ago)
- Last Synced: 2025-02-24T15:43:04.638Z (about 1 year ago)
- Language: Dockerfile
- Size: 362 KB
- Stars: 15
- Watchers: 10
- Forks: 14
- Open Issues: 5
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
Awesome Lists containing this project
README
= SteeltoeOSS Docker Images
:toc: preamble
:toclevels: 1
:!toc-title:
:linkattrs:
GitHub repo for server images to use for local development with SteeltoeOSS.
== Building
.Build a specific image:
----
./build.ps1 config-server
----
== Running
.List the created images:
----
docker images
----
See the link:https://github.com/SteeltoeOSS/Samples/blob/main/CommonTasks.md/[docker instructions] on how to run the various docker images.
== Images
|===
|Name |Description
|link:config-server/[steeltoe.azurecr.io/config-server]
| Spring Cloud Config Server
|link:eureka-server/[steeltoe.azurecr.io/eureka-server]
| Netflix Eureka Server
|link:spring-boot-admin/[steeltoe.azurecr.io/spring-boot-admin]
| Spring Boot Admin
|link:uaa-server/[steeltoe.azurecr.io/uaa-server]
| CloudFoundry UAA Server
|===
== Debug Image Building
Via link:https://stackoverflow.com/questions/32353055/how-to-start-a-stopped-docker-container-with-a-different-command/39329138#39329138[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`