Skip to content

Commit

Permalink
docker-compose: adds new frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
Clément Sicard committed Aug 29, 2023
1 parent 18b538d commit 5d75234
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,21 @@ services:
volumes:
- un-semun-api-data:/var/lib/un-semun-api

un-semun-frontend:
build:
context: ./un-semun-front
dockerfile: Dockerfile
ports:
- "${UN_SEMUN_FRONTEND_PORT}:8080"
environment:
# Make sure you set the correct UN_API env variable value in the shell
# from which you run docker-compose up.
- UN_API
- GRAPHDB_URL=neo4j
depends_on:
- un-semun-api
restart: on-failure

un-ml-pipeline:
build:
context: ./un-ml-pipeline
Expand Down Expand Up @@ -54,5 +69,4 @@ services:

volumes:
un-semun-api-data:
un-semun-frontend-data:
un-ml-pipeline-data:

0 comments on commit 5d75234

Please sign in to comment.