docker-bits/lsio/filezilla/docker-run.sh

16 lines
761 B
Bash
Raw Normal View History

2021-04-21 00:55:42 +00:00
# [FIleZilla](https://filezilla-project.org/) Client is a fast and reliable
# cross-platform FTP, FTPS and SFTP client with lots of useful features and an
# intuitive graphical user interface.
2021-04-20 00:55:53 +00:00
2023-04-26 00:53:18 +00:00
. ./.env
2021-04-20 00:55:53 +00:00
docker run -d \
--name=filezilla \
2022-04-02 00:45:58 +00:00
-e PUID=${PUID:-1024} `# for UserID` \
-e PGID=${PGID:-100} `# for GroupID` \
2023-02-26 14:51:38 +00:00
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
2021-04-20 00:55:53 +00:00
-p 3000:3000 `# FileZilla desktop gui.` \
2023-04-08 00:50:33 +00:00
-p 3001:3001 `# FileZilla desktop gui HTTPS.` \
2021-04-20 00:55:53 +00:00
-v ${BASEDIR:-/volume1/docker}/filezilla/config:/config `# Users home directory in the container, stores local files and settings` \
--restart unless-stopped \
ghcr.io/linuxserver/filezilla