A simple Spring Boot App that enables Netflix Eureka as a Service Registry. Port 8761
is exposed.
# Server HTTP port.
server.port=8761
# Indicates whether this client should fetch eureka registry information from eureka server.
eureka.client.fetch-registry=false
# Indicates whether or not this instance should register its information with eureka server for discovery by others.
# In some cases, you do not want your instances to be discovered whereas you just want do discover other instances.
eureka.client.register-with-eureka=false
Because it is a Spring Boot application, you can override the default configuration
properties by adding an application.properties
file under /apps/
in the image.
This repository is created for testing the capabilities of the Eureka Server and it is used in a test environment only. It is highly recommended to be used only for testing.