No description
  • Shell 59.1%
  • Dockerfile 40.9%
Find a file
2024-12-04 21:09:55 +01:00
bin build.sh Script for nikola build 2024-10-30 22:12:10 +01:00
.gitlab-ci.yml Add node- and npm-version output to test stage 2024-12-04 21:07:00 +01:00
Dockerfile Add nodejs and npm to image 2024-12-04 21:09:55 +01:00
README.md Environment-Variables in README listet 2023-07-12 10:31:39 +00:00
requirements.txt Add requirements.txt File 2023-07-11 15:25:37 +00:00

deployment-helper für Nikola based Websites

ENV-Variables

  • LFTP_PASSWORD (Deployment-Passwort for sftp-Upload)
  • SSH_HOST (Deployment-Host for sftp-Upload)
  • SSH_USER (Deployment-User for sftp-Upload)

Python 3.11 and Nikola 8.x

This image is based on the python:3.11-alpine image and includes additional Python-packages for building nikola-sites.

lftp for sftp-Uploads

This image includes lftp to upload files to a sftp-server and use the sftp-password from LFTP_PASSWORD environment variable.

lftp -e 'set sftp:auto-confirm yes; mirror -R ./<LOCAL_DIR>/ ./<REMOTE_DIR>/; bye' --env-password -u USER sftp://<TARGET_FQDN>