Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 472 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 472 Bytes

Build and Run with docker

You need docker installed on your machine.

In appseetings.json file change the connection string for your local MySQL Server

"ConnectionStrings": {
    "Work": "server=localhost;database=work;user=user;password=password"
  },

Build and Run

In application root folder Run

docker build -t worknet .
docker run --name WorkNetInstance -d -p 5000:80 worknet

Just it now application running in http://localhost:5000