Перейти к файлу
Tim Hess d0e211187d workflows should be triggered by changes to their definitions 2024-09-30 08:26:07 -05:00
.github/workflows workflows should be triggered by changes to their definitions 2024-09-30 08:26:07 -05:00
config-server Build special tags during PR instead of different image name, revert -DirectoryName addition, update readme files, use alpine for config server running image 2024-09-30 07:44:06 -05:00
eureka-server Build special tags during PR instead of different image name, revert -DirectoryName addition, update readme files, use alpine for config server running image 2024-09-30 07:44:06 -05:00
spring-boot-admin Build (latest version of) SBA from Initializr like other images 2024-09-30 07:44:06 -05:00
uaa-server Build special tags during PR instead of different image name, revert -DirectoryName addition, update readme files, use alpine for config server running image 2024-09-30 07:44:06 -05:00
.editorconfig Initial support for EditorConfig 2019-06-13 16:12:53 -04:00
.gitattributes Treat jars as binary files 2020-10-06 11:24:19 -04:00
.gitignore Ignores MacOS Finder state 2018-09-24 16:23:54 -04:00
LICENSE URL Cleanup 2019-03-20 23:49:27 -05:00
README.adoc Build special tags during PR instead of different image name, revert -DirectoryName addition, update readme files, use alpine for config server running image 2024-09-30 07:44:06 -05:00
build.ps1 Build special tags during PR instead of different image name, revert -DirectoryName addition, update readme files, use alpine for config server running image 2024-09-30 07:44:06 -05:00

README.adoc

= 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`