Skip to content

Commit

Permalink
edited readme + compose file
Browse files Browse the repository at this point in the history
  • Loading branch information
arne-vl committed May 13, 2024
1 parent 87e3446 commit 1bba750
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@
Bekijk snel de huidige marktprijs van braadkippen per kilo.
Zowel Deinze als ABC markt.

## Installatie docker
```
git clone https://github.com/arne-vl/WaStaanDeKiekes.git
cd WaStaanDeKiekes
docker compose up -d
## Installatie docker-compose:
```yaml
version: "3"

services:
chicken-api:
image: arnevl/chicken-price-api:latest
ports:
- 8000:8000
```
7 changes: 7 additions & 0 deletions docker-compose-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: "3"

services:
chicken-api:
build: .
ports:
- 8000:8000
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ version: "3"

services:
chicken-api:
build: .
image: arnevl/chicken-price-api:latest
ports:
- 8000:8000

0 comments on commit 1bba750

Please sign in to comment.