Skip to content

Commit

Permalink
chore(): added docker-compose and updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
zsinnema committed Feb 23, 2024
1 parent 444913e commit d5cee6b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,17 @@ run
docker run --name cde-mapper -e TZ=UTC -p 8000:80 cde-mapper
```

## docker-compose

run
```bash
docker-compose up --build
```

stop:
```bash
docker-compose down
```

open the url http://localhost:8000/

6 changes: 6 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: "2.4"
services:
cde-demo:
build: .
ports:
- "8080:80"

0 comments on commit d5cee6b

Please sign in to comment.