proftpd-server-alpine
Multi-Aarch image of ProFTPD, a free, open-source, & one of the most popular UNIX FTP servers today
100K+
| Component | Source | Current Version |
|---|---|---|
| ProFTPD | Alpine edge/community | 1.3.9c-r0 |
| Alpine Base | alpine:edge | edge |
This is an unofficial multi-aarch docker image of ProFTPD created for multiplatform support.This image creates a local FTP server to ficilitate client-side data transfer. Official Website: http://www.proftpd.org/
| Architecture | Available | Tag | Status |
|---|---|---|---|
| x86-64 | ✅ | amd64-<version tag> | Tested "WORKING" |
| arm64 | ✅ | arm64v8-<version tag> | Tested "WORKING" |
| armhf | ✅ | arm32v7-<version tag> | Tested "WORKING" |
This image provides various versions that are available via tags. Please read the update information carefully and exercise caution when using "older versions" tags as they tend to contain unfixed bugs.
| Tag | Available | Description |
|---|---|---|
| latest | ✅ | Stable ProFTPD release |
| 1.3.9c-r0 | ✅ | ProFTPD build version 1.3.9c-r0 |
Here are some example snippets to help you get started creating a container.
---
version: "3.9"
services:
proftpd-server-alpine:
image: mekayelanik/proftpd-server-alpine:latest
container_name: proftpd-server-alpine
environment:
- TZ=Asia/Dhaka
- FTP_PORT=21
- NUMBER_OF_SHARES=4
- FTP_SHARE_1=SHARE_1
- FTP_PASSWORD_1=PASS_1
- FTP_SHARE_1_PUID=1001
- FTP_SHARE_1_PGID=1001
- FTP_SHARE_2=SHARE_2
- FTP_PASSWORD_2=PASS_2
- FTP_SHARE_2_PUID=1002
- FTP_SHARE_2_PGID=1002
- FTP_SHARE_3=SHARE_3
- FTP_PASSWORD_3=PASS_3
- FTP_SHARE_3_PUID=1003
- FTP_SHARE_3_PGID=1003
- FTP_SHARE_4=SHARE_4
- FTP_PASSWORD_4=PASS_4
- FTP_SHARE_4_PUID=1004
- FTP_SHARE_4_PGID=1004
volumes:
- /mnt/Vol1:/data/SHARE_1
- /mnt/Vol1:/data/SHARE_2
- /mnt/Vol1:/data/SHARE_3
- /mnt/Vol1:/data/SHARE_4
restart: unless-stopped
docker run -d \
--name=proftpd-server-alpine \
-e TZ=Asia/Dhaka \
-e FTP_PORT=21 \
-e NUMBER_OF_SHARES=4 \
-e FTP_SHARE_1=SHARE_1 \
-e FTP_PASSWORD_1=PASS_1 \
-e FTP_SHARE_1_PUID=1001 \
-e FTP_SHARE_1_PGID=1001 \
-e FTP_SHARE_2=SHARE_2 \
-e FTP_PASSWORD_2=PASS_2 \
-e FTP_SHARE_2_PUID=1002 \
-e FTP_SHARE_2_PGID=1002 \
-e FTP_SHARE_3=SHARE_3 \
-e FTP_PASSWORD_3=PASS_3 \
-e FTP_SHARE_3_PUID=1003 \
-e FTP_SHARE_3_PGID=1003 \
-e FTP_SHARE_4=SHARE_4 \
-e FTP_PASSWORD_4=PASS_4 \
-e FTP_SHARE_4_PUID=1004 \
-e FTP_SHARE_4_PGID=1004 \
-v /mnt/Vol1:/data/SHARE_1 \
-v /mnt/Vol1:/data/SHARE_2 \
-v /mnt/Vol1:/data/SHARE_3 \
-v /mnt/Vol1:/data/SHARE_4 \
--restart unless-stopped \
mekayelanik/proftpd-server-alpine:latest
---
version: "3.9"
services:
proftpd-server-alpine:
image: mekayelanik/proftpd-server-alpine:latest
container_name: proftpd-server-alpine
environment:
- TZ=Asia/Dhaka
- FTP_PORT=21
- NUMBER_OF_SHARES=4
- FTP_SHARE_1=SHARE_1
- FTP_PASSWORD_1=PASS_1
- FTP_SHARE_1_PUID=1001
- FTP_SHARE_1_PGID=1001
- FTP_SHARE_2=SHARE_2
- FTP_PASSWORD_2=PASS_2
- FTP_SHARE_2_PUID=1002
- FTP_SHARE_2_PGID=1002
- FTP_SHARE_3=SHARE_3
- FTP_PASSWORD_3=PASS_3
- FTP_SHARE_3_PUID=1003
- FTP_SHARE_3_PGID=1003
- FTP_SHARE_4=SHARE_4
- FTP_PASSWORD_4=PASS_4
- FTP_SHARE_4_PUID=1004
- FTP_SHARE_4_PGID=1004
volumes:
- /mnt/Vol1:/data/SHARE_1
- /mnt/Vol1:/data/SHARE_2
- /mnt/Vol1:/data/SHARE_3
- /mnt/Vol1:/data/SHARE_4
restart: unless-stopped
hostname: proftpd-server
domainname: local
mac_address: 45-45-45-45-45-45
networks:
macvlan-1:
ipv4_address: 192.168.1.21
#### Network Defination ####
networks:
macvlan-1:
name: macvlan-1
external: True
driver: macvlan
driver_opts:
parent: eth0
ipam:
config:
- subnet: "192.168.1.0/24"
ip_range: "192.168.1.2/24"
gateway: "192.168.1.1"
Below are the instructions for updating containers:
docker compose pull
docker compose pull mekayelanik/proftpd-server-alpine
docker compose up -d
docker compose up -d proftpd-server-alpine
docker image prune
docker pull mekayelanik/proftpd-server-alpine:latest
docker stop proftpd-server-alpine
docker rm proftpd-server-alpine
/AgentDVR/Media/XML folder and settings will be preserved) docker image prune
Pull the latest image at its tag and replace it with the same env variables in one run:
docker run --rm \
-v /var/run/docker.sock:/var/run/docker.sock \
containrrr/watchtower\
--run-once proftpd-server-alpineTo remove the old unused images run: docker image prune
Note: You can use Watchtower as a solution to automated updates of existing Docker containers. But it is discouraged to use automated updates. However, this is a useful tool for one-time manual updates of containers where you have forgotten the original parameters. In the long term, it is recommend to use Docker Compose.
To submit this Docker image specific issues or requests visit this docker image's Github Link: https://github.com/MekayelAnik/proftpd-server-alpine
For Proftpd related issues and requests, please visit: https://github.com/proftpd/proftpd/
Content type
Image
Digest
sha256:2b510faee…
Size
6.2 MB
Last updated
5 days ago
docker pull mekayelanik/proftpd-server-alpine