Application demo designed to show how ASP.NET Core and PostgreSQL can be run in Docker containers. The app uses Entity Framework to create a simple database that stores Docker commands and examples.
##To run the app with Docker Containers:
###Running the App with Docker Compose
-
Install
Docker for Mac
orDocker for Windows
(or Docker Toolbox: http://docker.com/toolbox if you have to) -
Navigate to
src/AspNetCorePostgreSQLDockerApp
in a console window -
Install Node on your local system and run the following commands in a command window:
npm install
npm run tsc:w
-
Open a separate command prompt window.
-
Run
docker-compose build
-
Run
docker-compose up
-
Navigate to http://localhost:5000 (http://192.168.99.100:5000 if using Docker Toolbox) in your browser to view the site.