docker-bits/lsio/filezilla/docker-compose.yaml

25 lines
755 B
YAML
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
---
version: "2.1"
services:
filezilla:
image: ghcr.io/linuxserver/filezilla
container_name: filezilla
environment:
# for UserID
2022-04-02 00:45:58 +00:00
- PUID=${PUID:-1024}
# for GroupID
2021-04-20 00:55:53 +00:00
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
- TZ=${TZ:-Europe/Amsterdam}
volumes:
# Users home directory in the container, stores local files and settings
- ${BASEDIR:-/volume1/docker}/filezilla/config:/config
ports:
# FileZilla desktop gui.
- 3000:3000
restart: unless-stopped