Skip to content
Snippets Groups Projects
Commit 510f82a9 authored by Frank Lange's avatar Frank Lange
Browse files

add an example deployment description with docker-compose

parent 6f21f07d
No related branches found
No related tags found
No related merge requests found
Pipeline #1634404 passed
# DALIA's backend Django application server
## Deployment example
[docker-compose.yml](docker-compose.yml) contains a simple example deployment of this Django application server and the [DALIA's Fuseki triplestore](https://git.rwth-aachen.de/dalia/backend/fuseki).
To start the deployment:
```shell
docker-compose up
```
To stop the deployed application:
```shell
docker-compose down
```
## Development setup
### Requirements
......
# Example deployment
services:
django:
image: registry.git.rwth-aachen.de/dalia/backend/django:dev
# alternative to pulling the image from the registry: build it
#build: .
ports:
- "8000:8000"
networks:
- fuseki_net
depends_on:
fuseki:
condition: service_healthy
fuseki:
image: registry.git.rwth-aachen.de/dalia/backend/fuseki:dev
networks:
- fuseki_net
networks:
fuseki_net:
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment