I’m wondering if/how can I add other docker run options.
(Docker run reference | Docker Documentation)
As far as I understand the web interface allows me to set
Name ### Name (–name)
Memory limit
Port ### EXPOSE (incoming ports)
ENV ### ENV (environment variables)
Volumes ### VOLUME (shared filesystems)
How can I set other options like:
other Runtime constraints on resources
other EXPOSE (incoming ports)
Basically I need to be able to use:
–link: Add link to another container (:alias or )
–cpus Number of CPUs. Number is a fractional number. 0.000 means no limit.
Thank you.