Sign inSign up

jinkyoungheo/emp-web

By jinkyoungheo

Updated over 1 year ago

Spring boot application that manages the data in the employee table of the Oracle database.

Image
Web servers
0

2.1K

jinkyoungheo/emp-web repository overview

docker run

emp-web

You must first run the Oracle container before running this application.
docker run -d -p 8080:8080 \
-e DB_IP=<your oracle container ip address> \
-e DB_USER=hr \
-e DB_PASS=hr \
-e API_BASE_URL=<http://your backend api url:port> \
jinkyoungheo/emp-web
The default values for DB_USER and DB_PASS are hr.
  • Oracle container run ex: docker run -d -p 1521:1521 -e ORACLE_PASSWORD=oracle jinkyoungheo/oracle-xe

  • Spring boot app run ex: docker run -d -p 8080:8080 -e DB_IP=192.168.0.19 -e API_BASE_URL=http://192.168.0.27:8080 jinkyoungheo/emp-web

Tag summary

Content type

Image

Digest

sha256:91b52f719

Size

255.8 MB

Last updated

over 1 year ago

docker pull jinkyoungheo/emp-web