A simple application for the getting started guide in Docker's documentation
Go to file
Prokop Viktorín b921e15495 written code
2023-09-17 17:58:10 +02:00
src written code 2023-09-17 17:58:10 +02:00
Dockerfile written code 2023-09-17 17:58:10 +02:00
package.json written code 2023-09-17 17:58:10 +02:00
README.md written code 2023-09-17 17:58:10 +02:00
requirements.txt written code 2023-09-17 17:58:10 +02:00
yarn.lock first commit 2023-07-17 10:17:25 -07:00

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
```

Running