I wanted to add a websockify container with a remote-image on my mikrotik hapac2, wich i pushed to dockerhub before. My problem is that i can not run the container after adding the container. The status of the container is on "error".
The image link for the remote image is:
https://hub.docker.com/r/karayusuf29/we ... _arm_v7_32
To add the container i did this :
Code:Select all
/interface/veth/add name=veth1 address=192.168.1.150/24 gateway=192.168.1.1; #creating bridge and assign the bridge an ip /interface/bridge/add name=dockers; /ip/address/add address=10.0.0.1/24 interface=dockers; #connecting the veth-interface with the bridge /interface/bridge/port add bridge=dockers interface=veth1; #creating firewall /ip/firewall/nat/add chain=srcnat action=masquerade src-address=172.17.0.0/16; #creating environment and mounts parameters /container/envs/add name=websockify_envs key=PASSWD value=letmein; /container/mounts/add name=websockify_data src=disk1/docker/websockify_data dst=/data; #is required for some containers to run a bit more stable /container/config set ram=100 #is required for remote image /container/config/set registry-url=https://registry-1.docker.io tmpdir=disk1/pull # /container/add remote-image=karayusuf29/websockify_docker_image_arm_v7_32 interface=veth1 root-dir=disk2/docker/websockify_root mounts=websockify_data envlist=websockify_envs logging=yes hostname=Websockif
What can i do to get the container running?