change how we mount paths in connector container, SC-2670
There was conflict with the docker file and start.sh that could not be found when the container started.
This commit is contained in:
parent
3b571215ad
commit
77edc9d758
1 changed files with 3 additions and 3 deletions
|
@ -4,15 +4,15 @@ services:
|
||||||
image: docker.sunet.se/eidas-connector:<%= @version %>
|
image: docker.sunet.se/eidas-connector:<%= @version %>
|
||||||
container_name: eidas-connector
|
container_name: eidas-connector
|
||||||
environment:
|
environment:
|
||||||
- CONNECTOR_DIRECTORY=<%= @connector_directory %>
|
- CONNECTOR_DIRECTORY=/etc/eidas-connector
|
||||||
- SPRING_CONFIG_ADDITIONAL_LOCATION=<%= @connector_directory %>
|
- SPRING_CONFIG_ADDITIONAL_LOCATION=/etc/eidas-connector
|
||||||
- SPRING_PROFILES_ACTIVE=<%= @environment %>
|
- SPRING_PROFILES_ACTIVE=<%= @environment %>
|
||||||
- PKCS11_PIN=<%= @pkcs11_pin %>
|
- PKCS11_PIN=<%= @pkcs11_pin %>
|
||||||
|
|
||||||
hostname: <%= @server_fqdn %>
|
hostname: <%= @server_fqdn %>
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
- '<%= @connector_directory %>:<%= @connector_directory %>'
|
- '<%= @connector_directory %>:/etc/eidas-connector'
|
||||||
- '/etc/ssl:/etc/ssl'
|
- '/etc/ssl:/etc/ssl'
|
||||||
- '/etc/luna/cert:/usr/safenet/lunaclient/cert'
|
- '/etc/luna/cert:/usr/safenet/lunaclient/cert'
|
||||||
- '/etc/Chrystoki.conf.d:/etc/Chrystoki.conf.d'
|
- '/etc/Chrystoki.conf.d:/etc/Chrystoki.conf.d'
|
||||||
|
|
Loading…
Add table
Reference in a new issue