lucashalbert / docker-curl

A lightweight alpine linux container with curl installed

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

curl-logo

A multi-architecture curl image built on alpine linux. This image is compatible with arm32v6, arm32v7, arm64v8, and x86_64.

Travis-CI Build Status Image Version Image Layers Image Size Docker Pulls Docker Stars


Excerpt from the curl homepage.

command line tool and library
for transferring data with URLs

Supports...

DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMB, SMBS, SMTP, SMTPS, Telnet and TFTP. curl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, proxies, HTTP/2, cookies, user+password authentication (Basic, Plain, Digest, CRAM-MD5, NTLM, Negotiate and Kerberos), file transfer resume, proxy tunneling and more.

What's curl used for?

curl is used in command lines or scripts to transfer data. It is also used in cars, television sets, routers, printers, audio equipment, mobile phones, tablets, settop boxes, media players and is the internet transfer backbone for thousands of software applications affecting billions of humans daily.

Who makes curl?

curl is free and open source software and exists thanks to thousands of contributors and our awesome sponsors. The curl project follows well established open source best practices. You too can help us improve!

What's the latest curl?

The most recent stable version is 7.68.0, released on 8th of January 2020. Currently, 87 of the listed downloads are of the latest version.

Where's the code?

Check out the latest source code from github.

Run one-time curl container

docker run lucashalbert/curl https://curl.haxx.se

Run in Kubernetes + cron job:

apiVersion: batch/v1beta1
kind: CronJob
metadata:
  name: name-example
spec:
  schedule: "*/15 * * * *"
  successfulJobsHistoryLimit: 1
  failedJobsHistoryLimit: 1
  jobTemplate:
    spec:
      template:
        spec:
          containers:
          - name: name-example
            image: lucashalbert/curl:latest
            args:
            - "https://curl.haxx.se"
          restartPolicy: OnFailure

About

A lightweight alpine linux container with curl installed


Languages

Language:Shell 100.0%