Sign inSign up

xperimental/simple-ftp-resource

By xperimental

Updated almost 8 years ago

Simple Concourse resource for uploading files using FTP.

Image
0

1M+

xperimental/simple-ftp-resource repository overview

Docker Build Status

simple-ftp-resource

This provides a Concourse resource which can be used for interacting with an FTP server.

Currently only upload (put) is supported.

Usage

  1. Define a new resource_type
  2. Define a resource using the resource type
  3. Add a put step detailing what to upload
resource_types:
- name: ftp
  type: docker-image
  source:
    repository: xperimental/simple-ftp-resource

resources:
- name: server
  type: ftp
  source:
    host: ftp.example.de:21
    user: username
    password: password
    tls: true

jobs:
- name: upload
  plan:
  - put: site
    resource: server
    params:
      local: website/
      remote: /

Tag summary

Content type

Image

Digest

Size

2.3 MB

Last updated

almost 8 years ago

docker pull xperimental/simple-ftp-resource