Skip to content

Justedlev/simple-eureka-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

26 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Simple Eureka Server

๐Ÿšš Service Discovery

language framework framework GitHub GitHub Repo stars GitHub issues

๐Ÿ“‹ About

Simple Eureka Server it's a secure Service Discovery for easy launch and using, based on the Spring framework 6 and eureka server.

โ–ถ๏ธ Run

๐Ÿ› ๏ธ Intellij

Clone the repository using git clone https://github.com/Justedlev/simple-eureka-server.git and after that run the app local, you can use the simple run configuration, that based on .env and jvm options

๐Ÿšข Docker

I have a repository on Docker Hub

๐Ÿ—‚๏ธ Docker compose

Simple command to run the container: docker compose up -d --build

The full compose.yaml that I personally use

name: justedlev-microservice
services:
  simple-eureka-server:
    container_name: simple-eureka-server
    image: justedlev/simple-eureka-server:1.0.0-SNAPSHOT
    build:
      context: .
    environment:
      USERNAME: "{example}"
      PASSWORD: "{example}"
    ports:
      - 8761:8761