Collection of Docker images for various purposes.
10K+
The sommerfeldio/ftp-client image ships with NCFTP and uses ncftpputā for FTP uploads.
Learn about our tagging policy and the difference between rolling tags and immutable tags on our documentation pageā ā .
Starting with version 0.25.2, a Software Bill of Materials (SBOM) in SPDX format is generated for every image at build time and attached directly to the image in Docker Hub as an OCI attestation, available for the edge, latest and versioned tags. Retrieve it with
docker scout sbom sommerfeldio/ftp-client:latest ordocker buildx imagetools inspect sommerfeldio/ftp-client:latest --format "{{ json .SBOM }}".The same SBOM is also attached as a downloadable asset on each GitHub releaseā .
To use the image run the following command from a bash file.
FTP_HOST="ftp-host.example.com"
FTP_USER="the_username"
FTP_PASS="the_password"
# CAUTION: Storing credentials in variables like
# this is not a recommended way to handle secrets
docker run -i --rm \
--volume "$(pwd):$(pwd)" \
--workdir "$(pwd)" \
sommerfeldio/ftp-client:latest ncftpput -R -v -u "$FTP_USER" -p "$FTP_PASS" "$FTP_HOST" / ./*
This container image is inheriting the MIT License from the GitHub repositoryā .
The NCFTP software included within the image as a dependency is licensed under the Clarified Artistic Licenseā .
The Clarified Artistic License is generally considered compatible with the MIT License. Both licenses are permissive open-source licenses, meaning they allow the software to be freely used, modified, and redistributed.
This means:
Content type
Image
Digest
sha256:74ba36933ā¦
Size
40.2 MB
Last updated
22 days ago
docker pull sommerfeldio/ftp-client