skip to Main Content

Adding openssh package to alpine docker

I have the following Dockerfile: FROM alpine:latest RUN apk update RUN apk add --no-cache curl openssh sshpass rsync #etc And this docker-compose.yml: [...] services: my-container: build: context: ./my-folder dockerfile: Dockerfile container_name: my-container restart: unless-stopped #etc And I'm running this command:…

VIEW QUESTION
Back To Top
Search