commit 18bc9182706de2ad000c5257d67d0a906f28442b Author: Nick Date: Sun Aug 10 22:19:18 2025 +0200 initial commit diff --git a/.env b/.env new file mode 100644 index 0000000..de381c7 --- /dev/null +++ b/.env @@ -0,0 +1,3 @@ +PUBLIC_IP=152.53.225.127 +FTP_PASS=WHmH*E9xoL29vK0q6NjMA1AP*tq7 +FTP_USER=nick \ No newline at end of file diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..e01192d --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,13 @@ +services: + ftp-server: + container_name: ftp-server + environment: + - PUBLIC_IP=${PUBLIC_IP} + - FTP_PASS=${FTP_PASS} + - FTP_USER=${FTP_USER} + image: garethflowers/ftp-server + ports: + - "20-21:20-21/tcp" + - "40000-40009:40000-40009/tcp" + volumes: + - "/opt/paperless-ngx/consume:/home/ftp-server/nick" \ No newline at end of file