December 26, 20232 yr @mods: I hope I'm in the right subforum. Seemed to be the most fitting. If not, please send me a pm TL;DR: fresh unraid install (version 6.12.6). trying to get https://github.com/jonathanbower/docker-glftpd to work and failing hard. Unable to get a direct network connection (prefered) and/or mapping on host. Hi guys, I recently (re-)installed a fresh unraid with version 6.12.6 and set up everything up from scratch. No specific in-depth config/tweaks. Everything's rather default. All my previous dockers are working fine except glftpd (the docker I'm using: https://github.com/jonathanbower/docker-glftpd) although using the exact same template as on the previous install. The issue: it doesn't matter if or what network I specify, it won't establish a network connection (I prefer glftpd having its own IP) or map the ports on the host. No errors shown in docker-log. My current network settings: dual-nic bond (active-backup) bridging disabled macvlan enabled My compose file (using the Compose.Manager-Plugin) I used before and was working like a charm version: '3.9' services: glftpd: image: jonarin/glftpd container_name: FTPd restart: unless-stopped networks: bond0: ipv4_address: 10.10.099.243 ports: - 23830-23840 environment: - GL_RESET_ARGS=-e - TZ=Europe/Zurich - GL_PORT=23840 volumes: - '/mnt/myshare/ftp/conf:/glftpd/ftp-data' - '/mnt/myshare/ftp/data:/glftpd/site' networks: bond0: external: true name: bond0 What I tried so far: all combination of bond on/off, bridging on/off, ipvlan/macvlan. but no dice. Previous (working) setup on old install: bond on + bridging on + macvlan (I know, not recommended anymore, but it was a legacy setup and had no issues whatsoever) specifying all available docker networks/-types Since I'm no docker expert in any regard, does anyone have any idea on how to get it (back) working (again) or any hints where to look? Thanks in advance paddesb Edited December 27, 20232 yr by paddesb
December 26, 20232 yr Author Solution I was able to solve it by changing the file as follows: version: '3.9' services: glftpd: image: jonarin/glftpd container_name: FTPd restart: unless-stopped networks: default: ipv4_address: 10.10.099.243 ports: - 23830-23840 environment: - GL_RESET_ARGS=-e - TZ=Europe/Zurich - GL_PORT=23840 volumes: - '/mnt/myshare/ftp/conf:/glftpd/ftp-data' - '/mnt/myshare/ftp/data:/glftpd/site' networks: default: external: true name: bond0 It's not pretty but it seems to work. If anyone has a better solution please let me know 🙂 Edited December 27, 20232 yr by paddesb
December 26, 20232 yr Community Expert Unless you have a pool named 'galaxy', /mnt/galaxy is a path in RAM.
December 26, 20232 yr Author I have a different poolname (and path). I had it simplified to make it easier to read. But thanks for pointing it out To avoid confusion I will change it 🙂
December 27, 20232 yr Community Expert I see you edited your previous posts. So now, unless you have a pool named 'milkyway', /mnt/milkyway is a path in RAM.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.