graphql-and-odata

GraphQL and OData in ASP.NET Core 3.1

MIT License

Stars
2

Dockerizing a ASP.NET GraphQL

Login to Docker Hub

$ docker login

create an ASP.NET Web API container

$ docker build -t {yourDockerUsername}/asp-api:1.0.0 .

Test the ASP.NET Web API container by running it. It should be visible at localhost:8080

$ docker run -p 8080:80 {yourDockerUsername}/asp-api:1.0.0

Push the container to your Docker Hub account repository

$ docker push {yourDockerUsername}/asp-api:1.0.0