Skip to content

hatip5656/cloud

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Trendyol Service (Docker)

1) Docker create network

docker network create trendyol-network

2) Build image of eureka & run

mvn clean install
docker build -t poc/eureka:1.0 .
docker run --rm --name eureka -p 9101:9101 --net trendyol-network poc/trendyol:1.0

3) Build image of apigw(GateWay) & run

mvn clean install
docker build -t poc/apigw:1.0 .
docker run --rm --name apigw -p 9100:9100 --net trendyol-network poc/apigw:1.0

3) Build image of trendyol-service & run

mvn clean install
docker build -t poc/trendyol-service:1.0 .
docker run --rm --name trendyol-service -p 9103:9103 --net trendyol-network poc/trendyol-service:1.0

Trendyol Service (Without Docker) Maven and Java required only

Run install.sh inside project directory

Project UI's

Eureka UI http://localhost:9101/
Swagger UI http://localhost:9100/trendyol-service/swagger-ui.html
Database Console UI http://localhost:9100/trendyol-service/db-console/