Skip to content
This repository was archived by the owner on Feb 2, 2022. It is now read-only.

Commit

Permalink
Enable Mirage2 in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Rohrer committed Oct 19, 2018
1 parent 1c45500 commit 80b8222
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
Binary file not shown.
12 changes: 8 additions & 4 deletions docker-compose-files/somaliren-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
so_edu_mu:
build:
../../dockerfiles/so_edu_mu
image: so_edu_mu:0.1
image: so_edu_mu:0.2
environment:
- DSPACE_INSTALL=/dspace
ports:
Expand All @@ -33,15 +33,17 @@ services:
stdin_open: true
environment:
- VIRTUAL_HOST=repository.mu.edu.so
- VIRTUAL_PORT=5601
- VIRTUAL_PORT=8080
- [email protected]
- LETSENCRYPT_HOST=repository.mu.edu.so

nginx-proxy:
image: jwilder/nginx-proxy:0.7.0
ports:
- "129.232.230.131:80:80"
- "129.232.230.131:443:443"
- "80:80"
- "443:443"
networks:
- dspacenet
volumes:
- ./certs:/etc/nginx/certs:ro
- ./htpasswd:/etc/nginx/htpasswd
Expand All @@ -61,6 +63,8 @@ services:
- nginx-vhost:/etc/nginx/vhost.d
- nginx-html:/usr/share/nginx/html
- /var/run/docker.sock:/var/run/docker.sock:ro
networks:
- dspacenet
restart: unless-stopped

volumes:
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/so_edu_mu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ COPY build.properties /app/DSpace
FROM maven as build
WORKDIR /app
COPY --from=clone /app/DSpace /app
RUN mvn package
RUN mvn package -Dmirage2.on=true


FROM dspace/dspace-tomcat as ant_build
Expand Down

0 comments on commit 80b8222

Please sign in to comment.