Initial docker infrastructure

This commit is contained in:
2026-05-13 10:44:02 +02:00
commit be5bff6e14
2 changed files with 30 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
.env
.env.local
*.log
+27
View File
@@ -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