diff --git a/.drone.yml b/.drone.yml index f702515..1a921a0 100644 --- a/.drone.yml +++ b/.drone.yml @@ -36,7 +36,7 @@ steps: - name: build-docker-image image: plugins/docker settings: - repo: r3pek/scp-server + repo: r3pek/sftp-server username: from_secret: docker_username password: diff --git a/README.md b/README.md index 8f6153d..e64c41e 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -SCP server +SFTP server ========== -Restricted SSH server which allows SFTP access only. This image is meant to provide an ability to update content in data containers. You would normally make a constellation of your service, a data container, and the scp-server container. +Restricted SSH server which allows SFTP access only. This image is meant to provide an ability to update content in data containers. You would normally make a constellation of your service, a data container, and the sftp-server container. -The scp-server container is configured at runtime with environment variables to match the configuration of the main service. The environment variables are: +The sftp-server container is configured at runtime with environment variables to match the configuration of the main service. The environment variables are: **Environment Variables:** * `AUTHORIZED_KEYS` - contains the public SSH keys for the users who will be allowed to upload. @@ -21,8 +21,8 @@ It is easiest if you use docker-compose. Then you can specify the authorized SSH docker-compose.yml file: ``` -scpserver: - image: eeacms/scp-server +sftpserver: + image: r3pek/sftp-server ports: - :22 environment: @@ -47,7 +47,7 @@ htdocs: - :/usr/local/apache2/htdocs ``` -When started you can upload data into the container (e.g. via scp) as the `data` user: +When started you can upload data into the container as the `data` user: sftp -P data@ diff --git a/docker-compose.yml b/docker-compose.yml index c7a563b..c396b05 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,5 +1,5 @@ scpserver: - image: eeacms/scp-server + image: r3pek/sftp-server ports: - "2222:22" environment: