-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Fix the Dockerfile and the README.md (#593)
* Fix: Fix the Dockerfile and the README.md The versions used in the Dockerfile as well as the README.md didnt seems to be up to date. I also add the build part for the Dockerfile. This would help to be independant from any previous java/maven installation on the the build host. Signed-off-by: Julien Godin <julien.godin@camptocamp.com> * feature(git) Add git as it seems needed by magpie for the rules Signed-off-by: Julien Godin <julien.godin@camptocamp.com> * feat: add docker-compose.yaml Signed-off-by: Julien Godin <julien.godin@camptocamp.com> --------- Signed-off-by: Julien Godin <julien.godin@camptocamp.com>
- Loading branch information
1 parent
b75dc0d
commit 56793c2
Showing
3 changed files
with
30 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
version: "3.8" | ||
services: | ||
magpie: | ||
image: magpie:latest | ||
entrypoint: | ||
- /bin/bash | ||
- -c | ||
- sleep infinity | ||
volumes: | ||
# PLEASE CHANGE THE PATH TO THE CONFIG FILE | ||
- ./magpie-cli/src/assembly/files/config.yaml:/magpie/config.yaml | ||
database: | ||
image: postgres:16 | ||
environment: | ||
POSTGRES_PASSWORD: magpie | ||
POSTGRES_USER: magpie | ||
POSTGRES_DB: magpie |