From f1b7c210f0b26c43ffb1f29cd167dc28bae5b50f Mon Sep 17 00:00:00 2001 From: sthope Date: Tue, 7 Sep 2021 18:51:50 +0200 Subject: [PATCH 1/5] initial commit --- _posts/2021-09-03-ssh-keys.md | 59 +++++++++++++++++++ _posts/2021-09-04-openssh-server-docker-ci.md | 56 ++++++++++++++++++ 2 files changed, 115 insertions(+) create mode 100644 _posts/2021-09-04-openssh-server-docker-ci.md diff --git a/_posts/2021-09-03-ssh-keys.md b/_posts/2021-09-03-ssh-keys.md index e11b56f..ad84674 100644 --- a/_posts/2021-09-03-ssh-keys.md +++ b/_posts/2021-09-03-ssh-keys.md @@ -18,3 +18,62 @@ Default generally is `~/.ssh/id_rsa`, you can omit `-f "/opt/.certs/service"` if ssh-keygen -t rsa -b 4096 -f "/opt/.certs/service" -C "Hopeless Automations" ``` +Key should be created along also with .pub key + +``` +eval $(ssh-agent -s) +ssh-add /opt/.certs/service +ssh-copy-id -i /opt/.certs/service USERNAME@IP -p PORT +``` +Login one last time using your old username and password and remember to disable them or remove them. +
+ +After that you can login into the host with: +``` +ssh -i /opt/.certs/service -p PORT USERNAME@IP +``` +
+ +Or you can go little further and create file: +``` +sudo nano /etc/ssh/ssh_config.d/myssh.conf +``` +
+ +With: +``` +Host 192.168.1.* + AddKeysToAgent yes + IdentityFile /opt/.certs/service + Port 22 + +Host service.local 192.168.1.2 + User USERNAME + HostName 192.168.1.2 + +### Github.com +# don't forget to add the .pub key into your profile +Host github.com + User git + Hostname github.com + AddKeysToAgent yes + IdentityFile /opt/.certs/github + +### Gitea +# don't forget to add the .pub key into your profile +Host gitea.com + User git + Hostname gitea.com + AddKeysToAgent yes + IdentityFile /opt/.certs/gitea + +### Gitlab +# don't forget to add the .pub key into your profile +Host gitlab.com + User git + Hostname gitlab.com + AddKeysToAgent yes + IdentityFile /opt/.certs/gitlab +``` +Now you should be able to connect using `ssh service` or ssh git clone your repos from respective git repository +Test if it's working with: ```ssh -T git@github.com``` \ No newline at end of file diff --git a/_posts/2021-09-04-openssh-server-docker-ci.md b/_posts/2021-09-04-openssh-server-docker-ci.md new file mode 100644 index 0000000..495eb1a --- /dev/null +++ b/_posts/2021-09-04-openssh-server-docker-ci.md @@ -0,0 +1,56 @@ +--- +layout: post +title: "Openssh-server Docker Container" +description: "" +author: sthope +image: +categories: [ Docker, Portainer, SSH ] +comments: true +--- + +First create openssh-server configuration folders: +``` +mkdir -p ~/docker/openssh-server/{config,ssh} +``` +
+ +Portainer Stack: +```yaml +--- +version: "3.8" +services: + openssh-server: + image: ghcr.io/linuxserver/openssh-server:latest + container_name: openssh-server + hostname: my_server + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/Amsterdam + - DOCKER_MODS=linuxserver/mods:openssh-server-rsync|linuxserver/mods:openssh-server-openssh-client|linuxserver/mods:openssh-server-git + - PUBLIC_KEY_FILE=~/docker/openssh-server/ssh + - PASSWORD_ACCESS=false + - SUDO_ACCESS=true + volumes: + - ~/docker/openssh-server/config:/config + - ~/docker/openssh-server/ssh:/root/.ssh + - ~/docker:/my_server + ports: + - 2222:2222 + restart: unless-stopped +``` + +After is running configure your ssh keys, you can generate new ones with command: +``` +docker run --rm -it --entrypoint /keygen.sh linuxserver/openssh-server +``` + +And after keys are configured you can ssh with: +``` +ssh -i /root/.ssh/your_key -p PORT USERNAME@IP +``` + +And from your Docker terminal you can enter the container with: +``` +docker exec -it openssh-server /bin/bash +``` From fd8c05d67037d4033f6866b869927bdc5513c353 Mon Sep 17 00:00:00 2001 From: sthope Date: Wed, 8 Sep 2021 23:50:24 +0200 Subject: [PATCH 2/5] initial commit --- .drone.yml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/.drone.yml b/.drone.yml index a19a00f..49585e0 100644 --- a/.drone.yml +++ b/.drone.yml @@ -34,6 +34,43 @@ steps: status: - success +- name: website + image: jekyll/jekyll:latest + settings: + TZ: Europe/Amsterdam + port: 4000 + script: + - jekyll serve --force_polling + when: + status: + - success + + # website: + # image: jekyll/jekyll:latest + # container_name: website + # hostname: website + # command: jekyll serve --force_polling + # network_mode: SWAG + # environment: + # - TZ=Europe/Amsterdam + # restart: unless-stopped + # volumes: + # - /home/sthope/docker/website:/srv/jekyll + # - /etc/localtime:/etc/localtime:ro + # - /etc/timezone:/etc/timezone:ro + # - website_cache:/srv/jekyll/.jekyll-cache + # - website_site:/srv/jekyll/_site + # labels: + # - swag=enable + # - swag_port=4000 + # - swag_proto=http + # - swag_url=www.sthope.dev +# - swag_auth=authelia +# - swag_auth_bypass=/api,/otherfolder + + + + - name: discord pull: always image: appleboy/drone-discord From 0212098e2daee7e1d0b399ec25e9f2a85d0a37e6 Mon Sep 17 00:00:00 2001 From: sthope Date: Wed, 8 Sep 2021 23:51:23 +0200 Subject: [PATCH 3/5] initial commit --- .drone.yml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.drone.yml b/.drone.yml index 49585e0..d887db9 100644 --- a/.drone.yml +++ b/.drone.yml @@ -6,7 +6,7 @@ clone: disable: false steps: -- name: testing-jekyll +- name: testing pull: always image: jekyll/jekyll:latest commands: @@ -18,23 +18,23 @@ steps: - bundle install - bundle exec jekyll build -- name: ssh commands - image: appleboy/drone-ssh - settings: - host: - from_secret: homelab_host - username: - from_secret: homelab_user - key: - from_secret: homelab_pwd - port: 22 - script: - - bash ~/scripts/sthopedevupdate - when: - status: - - success +# - name: ssh commands +# image: appleboy/drone-ssh +# settings: +# host: +# from_secret: homelab_host +# username: +# from_secret: homelab_user +# key: +# from_secret: homelab_pwd +# port: 22 +# script: +# - bash ~/scripts/sthopedevupdate +# when: +# status: +# - success -- name: website +- name: running image: jekyll/jekyll:latest settings: TZ: Europe/Amsterdam From 66ef92ab55f946788b04156f80d6f20f78b01dbf Mon Sep 17 00:00:00 2001 From: sthope Date: Wed, 8 Sep 2021 23:54:20 +0200 Subject: [PATCH 4/5] initial commit --- .drone.yml | 74 +++++++++++++++++++++++++++--------------------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/.drone.yml b/.drone.yml index d887db9..39d9e45 100644 --- a/.drone.yml +++ b/.drone.yml @@ -6,17 +6,17 @@ clone: disable: false steps: -- name: testing - pull: always - image: jekyll/jekyll:latest - commands: - - touch Gemfile.lock - - chmod a+w Gemfile.lock - - chown -R jekyll:jekyll /drone - - gem update --system - - gem install bundler - - bundle install - - bundle exec jekyll build +# - name: testing +# pull: always +# image: jekyll/jekyll:latest +# commands: +# - touch Gemfile.lock +# - chmod a+w Gemfile.lock +# - chown -R jekyll:jekyll /drone +# - gem update --system +# - gem install bundler +# - bundle install +# - bundle exec jekyll build # - name: ssh commands # image: appleboy/drone-ssh @@ -71,33 +71,33 @@ steps: -- name: discord - pull: always - image: appleboy/drone-discord - avatar_url: "https://git.sthope.dev/sthope/drone_test/raw/branch/master/rick.png" - environment: - DISCORD_WEBHOOK_ID: - from_secret: discord_webhook_id - DISCORD_WEBHOOK_TOKEN: - from_secret: discord_webhook_token - settings: - message: > - {{#success build.status}} - ✅ Build #{{build.number}} of `{{repo.name}}` succeeded. +# - name: discord +# pull: always +# image: appleboy/drone-discord +# avatar_url: "https://git.sthope.dev/sthope/drone_test/raw/branch/master/rick.png" +# environment: +# DISCORD_WEBHOOK_ID: +# from_secret: discord_webhook_id +# DISCORD_WEBHOOK_TOKEN: +# from_secret: discord_webhook_token +# settings: +# message: > +# {{#success build.status}} +# ✅ Build #{{build.number}} of `{{repo.name}}` succeeded. - 📝 Commit by {{commit.author}} on `{{commit.branch}}`: - ``` - {{commit.message}} - ``` - 🌐 <{{ build.link }}> - {{else}} - ❌ Build #{{build.number}} of `{{repo.name}}` failed. - 📝 Commit by {{commit.author}} on `{{commit.branch}}`: - ``` - {{commit.message}} - ``` - 🌐 <{{ build.link }}> - {{/success}} +# 📝 Commit by {{commit.author}} on `{{commit.branch}}`: +# ``` +# {{commit.message}} +# ``` +# 🌐 <{{ build.link }}> +# {{else}} +# ❌ Build #{{build.number}} of `{{repo.name}}` failed. +# 📝 Commit by {{commit.author}} on `{{commit.branch}}`: +# ``` +# {{commit.message}} +# ``` +# 🌐 <{{ build.link }}> +# {{/success}} # # when: # # event: From f7090510b1b31c9fbe921ebd9372fa91944c8531 Mon Sep 17 00:00:00 2001 From: sthope Date: Wed, 8 Sep 2021 23:57:10 +0200 Subject: [PATCH 5/5] initial commit --- .drone.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.drone.yml b/.drone.yml index 39d9e45..c75d479 100644 --- a/.drone.yml +++ b/.drone.yml @@ -6,17 +6,17 @@ clone: disable: false steps: -# - name: testing -# pull: always -# image: jekyll/jekyll:latest -# commands: -# - touch Gemfile.lock -# - chmod a+w Gemfile.lock -# - chown -R jekyll:jekyll /drone -# - gem update --system -# - gem install bundler -# - bundle install -# - bundle exec jekyll build +- name: testing + pull: always + image: jekyll/jekyll:latest + commands: + - touch Gemfile.lock + - chmod a+w Gemfile.lock + - chown -R jekyll:jekyll /drone + - gem update --system + - gem install bundler + - bundle install + - bundle exec jekyll build # - name: ssh commands # image: appleboy/drone-ssh