Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/filipe11402/demo-docker-core
Docker Container Demo
https://github.com/filipe11402/demo-docker-core
docker docker-image dockerfile
Last synced: 11 days ago
JSON representation
Docker Container Demo
- Host: GitHub
- URL: https://github.com/filipe11402/demo-docker-core
- Owner: filipe11402
- Created: 2021-12-31T18:18:41.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-16T21:57:03.000Z (almost 3 years ago)
- Last Synced: 2023-03-09T05:41:12.693Z (almost 2 years ago)
- Topics: docker, docker-image, dockerfile
- Language: C#
- Homepage: https://hub.docker.com/repository/docker/fencarnacao/demo-product-core
- Size: 1.14 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# Docker Demo Project
## Setup Demo Project
### Clone Repository
```sh
git clone -b main https://github.com/filipe11402/products-core.git
```### Publish the App in release configuration
```sh
dotnet publish -c release
```
### Create the Docker image
```sh
docker build -t image-name-desired -f Dockerfile
```
### Create Docker image instance(Container)
```sh
docker create -p 6000:80 --name docker-container-image docker-image-name
```
### Run Docker container
```sh
docker container start docker-container-name
```
### Stop Docker container
```sh
docker container stop docker-container-name
```
---
## Documentation[Docker Registry](https://hub.docker.com/repository/docker/fencarnacao/demo-product-core)
### Dockerfile
- [Here](https://github.com/filipe11402/products-core/blob/main/Dockerfile)## References
- [Docker Docs](https://docs.docker.com/get-started/)
- [Microsoft Docs](https://docs.microsoft.com/en-us/visualstudio/docker/tutorials/docker-tutorial)## Changelog
- [Here](https://github.com/filipe11402/demo-docker-core/commits/main)