skip to Main Content

Sbt-native-packager cannot connect to Docker daemon – Debian

Here is my configuration which worked for more than one year but suddenly stopped working. variables: DOCKER_DRIVER: overlay2 DOCKER_TLS_CERTDIR: "" stage: deploy image: "hseeberger/scala-sbt:11.0.9.1_1.4.4_2.13.4" before_script: - apt-get update - apt-get install sudo - apt-get install apt-transport-https ca-certificates curl software-properties-common -y…

VIEW QUESTION

Run tests using docker compose in scala – Debian

Trying to execute integration tests using docker. Below is the Dockerfile: FROM openjdk:8u232 ARG SBT_VERSION=1.2.8 # Install sbt RUN curl -L -o sbt-$SBT_VERSION.deb https://dl.bintray.com/sbt/debian/sbt-$SBT_VERSION.deb && dpkg -i sbt-$SBT_VERSION.deb && rm sbt-$SBT_VERSION.deb && apt-get update && apt-get install sbt && sbt…

VIEW QUESTION
Back To Top
Search