merge eva repos into single repository
This commit is contained in:
commit
200dd620ae
52 changed files with 2281 additions and 0 deletions
17
docker-compose.yml
Normal file
17
docker-compose.yml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
version: "3"
|
||||
services:
|
||||
frontend:
|
||||
build: ./frontend
|
||||
image: gidsi/spaceapi-ccc-frontend:latest
|
||||
depends_on:
|
||||
- backend
|
||||
backend:
|
||||
build: ./backend
|
||||
image: gidsi/spaceapi-ccc-backend:latest
|
||||
env_file: .env
|
||||
depends_on:
|
||||
- database
|
||||
database:
|
||||
image: mongo:latest
|
||||
volumes:
|
||||
- /opt/eva:/data/db
|
||||
Loading…
Add table
Add a link
Reference in a new issue