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
6 changes: 5 additions & 1 deletion bin/ed
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,13 @@ edi_calculate_standard_docker_options() {
--volume /app/tmp"
config_volumes=`edi_calculate_volumes_for_configuration`
linked_volumes=`edi_calculate_linked_volumes_for_node_modules`
if [ -n "$EDI_DISABLE_SELINUX" ]
then
selinux_disable="--security-opt label=disable"
fi
edi_calculate_ssh_agent_options # SSH_AGENT_OPTIONS

STANDARD_DOCKER_OPTIONS="$app_volumes $config_volumes $linked_volumes $SSH_AGENT_OPTIONS"
STANDARD_DOCKER_OPTIONS="$app_volumes $config_volumes $linked_volumes $selinux_disable $SSH_AGENT_OPTIONS"
}

# EXPOSES $EDI_DAEMON_CONTAINER_NAME
Expand Down
6 changes: 5 additions & 1 deletion bin/edi
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,13 @@ edi_calculate_standard_docker_options() {
--volume /app/tmp"
config_volumes=`edi_calculate_volumes_for_configuration`
linked_volumes=`edi_calculate_linked_volumes_for_node_modules`
if [ -n "$EDI_DISABLE_SELINUX" ]
then
selinux_disable="--security-opt label=disable"
fi
edi_calculate_ssh_agent_options # SSH_AGENT_OPTIONS

STANDARD_DOCKER_OPTIONS="$app_volumes $config_volumes $linked_volumes $SSH_AGENT_OPTIONS"
STANDARD_DOCKER_OPTIONS="$app_volumes $config_volumes $linked_volumes $selinux_disable $SSH_AGENT_OPTIONS"
}

# EXPOSES $EDI_DAEMON_CONTAINER_NAME
Expand Down
6 changes: 5 additions & 1 deletion bin/eds
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,13 @@ edi_calculate_standard_docker_options() {
--volume /app/tmp"
config_volumes=`edi_calculate_volumes_for_configuration`
linked_volumes=`edi_calculate_linked_volumes_for_node_modules`
if [ -n "$EDI_DISABLE_SELINUX" ]
then
selinux_disable="--security-opt label=disable"
fi
edi_calculate_ssh_agent_options # SSH_AGENT_OPTIONS

STANDARD_DOCKER_OPTIONS="$app_volumes $config_volumes $linked_volumes $SSH_AGENT_OPTIONS"
STANDARD_DOCKER_OPTIONS="$app_volumes $config_volumes $linked_volumes $selinux_disable $SSH_AGENT_OPTIONS"
}

# EXPOSES $EDI_DAEMON_CONTAINER_NAME
Expand Down