Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ LABEL "company"="Ninjaneers GmbH"

RUN apk update && apk add unzip

ADD https://ec.europa.eu/cefdigital/artifact/repository/esignaturedss/eu/europa/ec/joinup/sd-dss/dss-demo-bundle/5.5/dss-demo-bundle-5.5.zip /tmp
RUN unzip /tmp/dss-demo-bundle-5.5.zip -d /tmp
RUN mv /tmp/dss-demo-bundle-5.5 /dss
ADD https://ec.europa.eu/cefdigital/artifact/repository/esignaturedss/eu/europa/ec/joinup/sd-dss/dss-demo-bundle/5.9/dss-demo-bundle-5.9.zip /tmp
RUN unzip /tmp/dss-demo-bundle-5.9.zip -d /tmp
RUN mv /tmp/dss-demo-bundle-5.9 /dss

RUN chmod +x /dss/apache-tomcat-8.5.45/bin/catalina.sh
RUN chmod +x /dss/apache-tomcat-8.5.68/bin/catalina.sh

COPY ./startup.sh /dss/

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@

[![Build Status](https://travis-ci.org/ninjaneers-team/dss-docker.svg?branch=master)](https://travis-ci.org/ninjaneers-team/dss-docker)

This Dockerfile will provide the current Digital Signature Service Demo of CEF in version 5.5
This Dockerfile will provide the current Digital Signature Service Demo of CEF in version 5.9

@see [eSignature Service](https://ec.europa.eu/cefdigital/wiki/display/CEFDIGITAL/DSS)

## Usage

### Docker run
`docker run --rm --ti -p 8080:8080 ninjaneers/dss:latest`

`docker run --rm --ti -p 8080:8080 ninjaneers/dss:latest`

### Docker Compose

`docker-compose up` will expose DSS on http://localhost:8080
`docker-compose up` will expose DSS on http://localhost:8080
2 changes: 1 addition & 1 deletion startup.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
set -e
echo "`/bin/sh /dss/apache-tomcat-8.5.45/bin/startup.sh`"
echo "`/bin/sh /dss/apache-tomcat-8.5.68/bin/startup.sh`"
exec "$@"