Inventory Docker questions

Noob question, I’ve installed Iventoy but can’t open the GUI page it’s timing out. Furthermore I can’t, during the setup, assign port 67 as needed. Any suggestions?


version: ‘3.9’
services:
iventoy:
image: ziggyds/iventoy:latest
container_name: iventoy
restart: always
privileged: true #must be true
ports:
- 26000:26000
- 16000:16000
- 10809:10809
- 67:67/udp
- 69:69/udp
volumes:
- isos:/app/iso
- config:/app/data
- /:/app/log
environment:
- AUTO_START_PXE=true # optional, true by default

volumes:
isos:
external: true
config:
external: true

Maybe the same issue like for me when setting up Pi-hole:

The issue you’re encountering is due to port 67 being occupied by dnsmasq. dnsmasq is primarily used to assign IP addresses to ZVM instances.

To resolve this, you can check which service is using port 67 by running the following command:

netstat -tulnp | grep :67

If dnsmasq is the service occupying the port, you can stop it using:

killall -9 dnsmasq

This will release port 67, allowing your Docker application to use it. However, please note that stopping dnsmasq will cause ZVM’s network functionality to become unavailable.

Let me know if you need further assistance!

1 Like