Skip to content

Simple website with PostgreSQL database, based on Spring Boot.

Notifications You must be signed in to change notification settings

zagola/tutorial00

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

tutorial00

Application preview available at http://tutorial00.olazagrabska.pl.

Database

Building a docker with database.

$ docker pull postgres
$ docker build -t tutorial00_db .
$ docker run -d -p5432:5432 tutorial00_db

Connecting to database.

$ psql -h localhost -p 5432  -U ola  tutorial00

Backend

Building backend and docker.

$ docker pull openjdk:17.0.2-jdk
$ ./mvnw clean install
$ docker build -t tutorial00_backend .
$ docker run -d -p8080:8080 tutorial00_backend .

About

Simple website with PostgreSQL database, based on Spring Boot.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published