Sign inSign up

foxundermoon/eureka-server

By foxundermoon

Updated over 6 years ago

the eureka server

Image
0

257

foxundermoon/eureka-server repository overview

spring cloud eureka-server

Getting Started

docker run --name eureka-server -it --rm -p 8761:8761 foxundermoon/eureka-server

just some java code lines build it

package mn.fox.eurekaserver;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;

@SpringBootApplication
@EnableEurekaServer
public class EurekaServerApplication {

  public static void main(String[] args) {
    SpringApplication.run(EurekaServerApplication.class, args);
  }

}

Tag summary

Content type

Image

Digest

Size

262.5 MB

Last updated

over 6 years ago

docker pull foxundermoon/eureka-server