There was an error while loading. Please reload this page.
aicage does not provide a dedicated host-network flag. Networking behavior is host-OS specific, and Docker already supports it via runtime flags.
aicage
Use Docker run pass-through args to control networking:
aicage --network host -- <agent>
--network host
Example with published port:
aicage -p 3000:3000 -- <agent>
Example with a named Docker network:
aicage --network my-net -- <agent>
For Docker arg syntax, see Docker run pass-through args.