Inital Adding of Compose Files

This commit is contained in:
mindesbunister
2025-06-24 13:31:31 +02:00
parent 2a146b67fb
commit 1f2b05c937
87 changed files with 30542 additions and 0 deletions

22
compose_files/pureftp.yml Executable file
View File

@@ -0,0 +1,22 @@
version: '3'
# Usage example: https://github.com/stilliard/docker-pure-ftpd/wiki/Docker-stack-with-Wordpress-&-FTP
services:
ftpd_server:
image: stilliard/pure-ftpd
container_name: pureftpd
ports:
- "21:21"
- "30000-30009:30000-30009"
volumes:
- "/home/icke/pureftp/data:/home/scan/"
- "/home/icke/pureftp/passwd:/etc/pure-ftpd/passwd"
environment:
PUBLICHOST: "localhost"
FTP_USER_NAME: scan
FTP_USER_PASS: scan
FTP_USER_HOME: /home/scan
# also for ssl/tls:
# ADDED_FLAGS: "--tls=2"
restart: unless-stopped