kroniak/ssh-client

By kroniak

Updated 6 months ago

Little docker image based on alpine with ssh-client and bash

Image
Security
Developer tools
Operating systems
49

10M+

kroniak/ssh-client repository overview

alpine-ssh-client

A little docker image based on alpine with ssh-client and bash

using from GitLab CI

deploy_staging:
  stage: deploy
  image: kroniak/ssh-client
  environment:
    name: staging
    url: https://sample-app.net
  script:
    - mkdir -p ~/.ssh
    - chmod 700 ~/.ssh
    - echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
    - echo "$SSH_PRIVATE_KEY_STAGING" > ~/.ssh/id_rsa
    - chmod 600 ~/.ssh/id_rsa
    - scp -r deploy/app_staging/. $DEPLOY_STAGING_SSH_HOST:~/app
    - scp -r src/project/conf/. $DEPLOY_STAGING_SSH_HOST:~/app/conf
    - ssh $DEPLOY_STAGING_SSH_HOST 'chmod 700 ~/app/app.sh'
    - ssh $DEPLOY_STAGING_SSH_HOST 'cd ~/app && ./app.sh --file docker-compose-staging.yml up'
    - ssh $DEPLOY_STAGING_SSH_HOST 'cd ~/app && ./app.sh --file docker-compose-staging.yml update'
  only:
    - dev

using from docker

docker run -it --rm kroniak/ssh-client bash

Tag summary

Content type

Image

Digest

sha256:3aef87e1a

Size

6.2 MB

Last updated

6 months ago

docker pull kroniak/ssh-client