Skip to content

A project created to practice building REST APIs in Spring and to learn new things.

Notifications You must be signed in to change notification settings

Falynsky/spring_boot_recap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Attention

A project created to practice building REST APIs in Spring and to learn new things.

Working with docker without compose

  • docker network create mynetwork
  • docker run --name myredis --network redisnet -p 6379:6379 -p 8001:8001 -d redis
  • docker run --name mypostgres --network redisnet -p 5432:5432 -e POSTGRES_DB=course1 -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=123 -d postgres
  • docker build -t my-spring-boot-app .
  • docker run --name my-spring-boot-app --network redisnet -p 8080:8080 my-spring-boot-app

About

A project created to practice building REST APIs in Spring and to learn new things.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published