commit be5bff6e144b1f613fbb8a76e905c499cf584afc Author: Mboehmlaender Date: Wed May 13 10:44:02 2026 +0200 Initial docker infrastructure diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0d9ebd4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.env +.env.local +*.log diff --git a/filezilla/compose.yaml b/filezilla/compose.yaml new file mode 100644 index 0000000..4761eeb --- /dev/null +++ b/filezilla/compose.yaml @@ -0,0 +1,27 @@ +services: + filezilla: + container_name: filezilla + image: jlesage/filezilla + ports: + - "5800:5800" + networks: + DMZ: + ipv4_address: 10.10.12.13 + npm_proxy: + dns: + - 1.1.1.1 + volumes: + - /srv/docker/filezilla/config:/config:rw + - pyload_download_data:/storage:rw + environment: + - USER_ID=3000 + - GROUP_ID=3000 +volumes: + pyload_download_data: + external: true + +networks: + npm_proxy: + external: true + DMZ: + external: true