You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
version: '3'
services:
ftpd_server:
image: stilliard/pure-ftpd
container_name: pure-ftpd
ports:
- "21:21"
- "30000-30009:30000-30009"
volumes: # remember to replace /folder_on_disk/ with the path to where you want to store the files on the host machine
- "/etc/localtime:/etc/localtime:ro"
- "/ftp/rsyslog.conf:/etc/rsyslog.conf:ro" ## <-- Add this line where /ftp is the folder you have setup for pureftp container data
- "/ftp/var/log:/var/log"
- "/ftp/data:/home/ftpusers/"
- "/ftp/etc/ssl/private:/etc/ssl/private"
- "/ftp/passwd:/etc/pure-ftpd/passwd"
environment:
PUBLICHOST: "localhost"
# FTP_USER_NAME: admin
# FTP_USER_PASS: ...
# FTP_USER_HOME: /home/admin
ADDED_FLAGS: "-d -d --tls --tls=2"
restart: always
The text was updated successfully, but these errors were encountered:
In /etc/rsyslog.conf need to comment out the following line
Work around
The text was updated successfully, but these errors were encountered: