Skip to content

Commit

Permalink
feature: add initial docker-compose.yaml to simply start services
Browse files Browse the repository at this point in the history
The docker-compose.yaml file is incomplete its usage is not documented.
For the LangDev we aim to complete it and document its usage in the modelix documentation or README.md.

Relates-to: Preparation LangDev 2023 MODELIX-574
  • Loading branch information
odzhychko committed Nov 6, 2023
1 parent acfe3e8 commit 80627c6
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
services:
model-server:
# Keep the version in sync with the modelix version in gradle/libs.versions.toml
image: modelix/modelix-model:3.11.0
ports:
- 28101:28101
volumes:
- ./model-server/courses.modelserver.dump:/courses.modelserver.dump
command: ["./run-model-server.sh", "-inmemory", "-dumpin", "/courses.modelserver.dump"]
spa-overview-angular:
image: nginx
ports:
- 4200:80
volumes:
- ./spa-overview-angular/dist/spa-overview-angular:/usr/share/nginx/html
spa-management-vue:
image: nginx
ports:
- 3000:80
volumes:
- ./spa-management-vue/dist:/usr/share/nginx/html

0 comments on commit 80627c6

Please sign in to comment.