Skip to content

Commit

Permalink
app improvements: story telling
Browse files Browse the repository at this point in the history
  • Loading branch information
lfunderburk committed May 19, 2023
1 parent 6037977 commit 602b75a
Show file tree
Hide file tree
Showing 3 changed files with 2,786 additions and 107 deletions.
11 changes: 10 additions & 1 deletion docs/Docker-setup.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
### Docker setup

Publishing image

```
docker build -t <application>:latest -f <Dockerfile-name> .
docker tag <application>:latest lgfunderburk/<application>:latest
Expand All @@ -9,4 +11,11 @@ docker push lgfunderburk/<application>:latest
Where

`<application>` is one of `myapi`, `mydashapp`, `mypipeline` and
`<Dockerfile-name>` is one of `Dockerfile.api`, `Dockerfile.dash` and `Dockerfile.pipe`
`<Dockerfile-name>` is one of `Dockerfile.api`, `Dockerfile.dash` and `Dockerfile.pipe`

# Running image

```
docker build -t vehicleapi:latest -f Dockerfile .
docker run -it --rm -p 8000:8000 vehicleapi
```
Loading

0 comments on commit 602b75a

Please sign in to comment.