mirror of
https://github.com/docker/getting-started-app.git
synced 2024-12-22 15:20:51 -05:00
A simple application for the getting started guide in Docker's documentation
src | ||
Dockerfile | ||
package.json | ||
README.md | ||
requirements.txt | ||
yarn.lock |
Getting started
To create a docker image, run the following command in the root directory of the project:
```bash
docker build -t IMAGE-NAME .
```
To run the docker image, run the following command:
```bash
docker run -p 5000:5000 IMAGE-NAME
```