Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 806 Bytes

File metadata and controls

45 lines (30 loc) · 806 Bytes

spring-security-email-validation

to learn spring security email validation

Demo

demo

구상도

blueprint

PostgreSQL Container Run

docker pull postgres

docker run \
    --name registrationDB \
    -p 5433:5432 \
    -e POSTGRES_USER=admin \
    -e POSTGRES_PASSWORD=pwd \
    -e POSTGRES_DB=registration \
    -d \
    postgres

Inspect Database

docker exec -it <PSQL-Container-ID> bash
#           호스트     |  포트 |  유저  |  DB     
$ psql -h localhost -p 5432 -U admin registration -W # to authenticate to start using as postgres user

inspect db

MailDev RUN

docker run -p 1080:1080 -p 1025:1025 maildev/maildev

mail dev