Skip to content
Snippets Groups Projects
Commit c9190627 authored by Alexander König's avatar Alexander König
Browse files

- some minor changes to dspace and tomcat Dockerfiles

- added favicon
- added docker compose file
parent dd2674ea
Branches
Tags
No related merge requests found
......@@ -66,3 +66,5 @@ RUN make aai.min.js
# convenience setting of workdir
WORKDIR /opt/repository/workspace/scripts
CMD tail -f /opt/repository/sources/dspace/dspace-api/src/test/data/dspaceFolder/log/dspace.log
......@@ -50,3 +50,5 @@ COPY commul-customization/catalina.sh /opt/tomcat8/bin/
COPY commul-customization/setenv.sh /opt/tomcat8/bin/
COPY commul-customization/tomcat-server.xml /opt/tomcat8/conf/server.xml
CMD /etc/init.d/tomcat8 start && tail -f /opt/tomcat8/logs/catalina.out
commul-customization/favicon_eurac-research.png

642 B

version: "3"
services:
postgres:
build:
context: .
dockerfile: Dockerfile.psql
image: eurac_psql
restart: always
environment:
POSTGRES_PASSWORD: mysecretpassword
tomcat:
build:
context: .
dockerfile: Dockerfile.tomcat
image: eurac_tomcat
restart: always
ports:
- "8080:8080"
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment