Hi Please can you let me know what needs to be added within the .json to request that the container is given a static IP. I have the following for dhcp, so I’m guessing I would change that to "mode":"static", but I’m stuck after that.. ```` curl -sq -XPOST -b cookies.txt -d '{ "type": "docker", "name": "teedy-bridge", "image": "jdreinhardt/teedy", "tag": "1.9", "autostart": true, "environment": [ "TZ=Europe/London" ], "network": {"mode": "bridge", "bridge": {"mode":"dhcp","interface": {"name":"eth0"}}}, "resource": { "limit": { "cputime": 250, "cpuweight": 250, "memory": "2048" } }, "volume": { "host": { "/share/VM/teedy": { "bind": "/data", "rw": true } } } }' http://127.0.0.1:8080/containerstation/api/v1/container ````
Hi
Please can you let me know what needs to be added within the .json to request that the container is given a static IP.
I have the following for dhcp, so I’m guessing I would change that to "mode":"static", but I’m stuck after that..