I have searched everywhere but just can't seem to find the answer. I need to expose the Docker API over TCP on Alpine Linux using OpenRC.
I know how to do it on Ubuntu with systemd:
create /etc/systemd/system/docker.service.d/startup_options.conf
and add:
[Service]
ExecStart=
ExecStart=/usr/bin/dockerd -H fd:// -H tcp://0.0.0.0:2376
Hopefully I've given enough information for someone to understand what I am trying to do. Any help would be appreciated.