mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-06-27 16:57:05 +00:00
21 lines
383 B
YAML
21 lines
383 B
YAML
|
# https://filezilla-project.org/
|
||
|
|
||
|
# https://github.com/jlesage/docker-filezilla?tab=readme-ov-file#docker-compose-file
|
||
|
|
||
|
name: filezilla
|
||
|
services:
|
||
|
filezilla:
|
||
|
image: jlesage/filezilla
|
||
|
container_name: filezilla
|
||
|
ports:
|
||
|
- "5800:5800"
|
||
|
volumes:
|
||
|
- "./config:/config:rw"
|
||
|
- "/:/storage:rw"
|
||
|
networks:
|
||
|
- proxy
|
||
|
|
||
|
networks:
|
||
|
proxy:
|
||
|
external: true
|