-
Alexander König authored
- edited nginx conf to point to dspace container - merged dspace and tomcat containers - fixed https://github.com/ufal/clarin-dspace/issues/782 locally
Alexander König authored- edited nginx conf to point to dspace container - merged dspace and tomcat containers - fixed https://github.com/ufal/clarin-dspace/issues/782 locally
docker-compose.yml 1005 B
version: "3"
services:
postgres:
build:
context: .
dockerfile: Dockerfile.psql
image: eurac_psql
restart: always
environment:
POSTGRES_PASSWORD: mysecretpassword
nginx:
build:
context: .
dockerfile: Dockerfile.nginx
image: eurac_nginx
hostname: lindat-dev.eurac.edu
restart: always
ports:
- "80:80"
- "443:443"
handle:
build:
context: .
dockerfile: Dockerfile.handle
image: eurac_handle
restart: always
ports:
- "8000:8000"
- "2641:2641"
dspace:
build:
context: .
dockerfile: Dockerfile.dspace
image: eurac_dspace
depends_on:
- postgres
restart: always
ports:
- "8080:8080"