docker alpine README: fix project name

This commit is contained in:
Nicola Murino 2019-09-07 23:34:59 +02:00
parent e09ea00d8b
commit bd0eb2f0a8

View file

@ -1,11 +1,11 @@
# SFTPGo with Docker and Alpine
This DockerFile is made to build image to host multiple instances of SFTPgo started with different users.
This DockerFile is made to build image to host multiple instances of SFTPGo started with different users.
The volume for the configuration is not mandatory, but it will be necessary to configure SFTPgo with environment variables.
The volume for the configuration is not mandatory, but it will be necessary to configure SFTPGo with environment variables.
### Example
> 1003 is a custom uid:gid for this instance of SFTPgo
> 1003 is a custom uid:gid for this instance of SFTPGo
```bash
# Prereq on docker host
sudo groupadd -g 1003 sftpgrp && \
@ -14,7 +14,7 @@ sudo groupadd -g 1003 sftpgrp && \
curl https://raw.githubusercontent.com/drakkan/sftpgo/master/sql/sqlite/20190828.sql | sqlite3 /home/sftpuser/conf/sftpgo.db && \
curl https://raw.githubusercontent.com/drakkan/sftpgo/master/sftpgo.json -o /home/sftpuser/conf/sftpgo.json
# Get and build SFTPgo image
# Get and build SFTPGo image
git clone https://github.com/drakkan/sftpgo.git && \
cd sftpgo && \
sudo docker build -t sftpgo docker/sftpgo/alpine/