├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── feature-request.yml └── workflows │ └── build-image.yml ├── DOCKERHUB.md ├── Dockerfile ├── LICENSE ├── README.md ├── appdefs.yml ├── rootfs ├── defaults │ └── filezilla.xml ├── etc │ ├── cont-env.d │ │ └── INSTALL_PACKAGES_INTERNAL │ ├── cont-init.d │ │ └── 55-filezilla.sh │ ├── machine-id │ ├── openbox │ │ └── main-window-selection.xml │ ├── services.d │ │ └── app │ │ │ └── kill │ └── vim │ │ └── vimrc ├── startapp.sh └── usr │ └── bin │ └── filezilla_editor └── src └── filezilla ├── build.sh ├── fix-compilation-libfilezilla.patch └── fix-compilation.patch /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlesage/docker-filezilla/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlesage/docker-filezilla/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlesage/docker-filezilla/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlesage/docker-filezilla/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/workflows/build-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlesage/docker-filezilla/HEAD/.github/workflows/build-image.yml -------------------------------------------------------------------------------- /DOCKERHUB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlesage/docker-filezilla/HEAD/DOCKERHUB.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlesage/docker-filezilla/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlesage/docker-filezilla/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlesage/docker-filezilla/HEAD/README.md -------------------------------------------------------------------------------- /appdefs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlesage/docker-filezilla/HEAD/appdefs.yml -------------------------------------------------------------------------------- /rootfs/defaults/filezilla.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlesage/docker-filezilla/HEAD/rootfs/defaults/filezilla.xml -------------------------------------------------------------------------------- /rootfs/etc/cont-env.d/INSTALL_PACKAGES_INTERNAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlesage/docker-filezilla/HEAD/rootfs/etc/cont-env.d/INSTALL_PACKAGES_INTERNAL -------------------------------------------------------------------------------- /rootfs/etc/cont-init.d/55-filezilla.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlesage/docker-filezilla/HEAD/rootfs/etc/cont-init.d/55-filezilla.sh -------------------------------------------------------------------------------- /rootfs/etc/machine-id: -------------------------------------------------------------------------------- 1 | /config/machine-id -------------------------------------------------------------------------------- /rootfs/etc/openbox/main-window-selection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlesage/docker-filezilla/HEAD/rootfs/etc/openbox/main-window-selection.xml -------------------------------------------------------------------------------- /rootfs/etc/services.d/app/kill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlesage/docker-filezilla/HEAD/rootfs/etc/services.d/app/kill -------------------------------------------------------------------------------- /rootfs/etc/vim/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlesage/docker-filezilla/HEAD/rootfs/etc/vim/vimrc -------------------------------------------------------------------------------- /rootfs/startapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlesage/docker-filezilla/HEAD/rootfs/startapp.sh -------------------------------------------------------------------------------- /rootfs/usr/bin/filezilla_editor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlesage/docker-filezilla/HEAD/rootfs/usr/bin/filezilla_editor -------------------------------------------------------------------------------- /src/filezilla/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlesage/docker-filezilla/HEAD/src/filezilla/build.sh -------------------------------------------------------------------------------- /src/filezilla/fix-compilation-libfilezilla.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlesage/docker-filezilla/HEAD/src/filezilla/fix-compilation-libfilezilla.patch -------------------------------------------------------------------------------- /src/filezilla/fix-compilation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlesage/docker-filezilla/HEAD/src/filezilla/fix-compilation.patch --------------------------------------------------------------------------------