MikroTik Solutions

Changes To Container Limitations
Login

Changes To Container Limitations

Changes to "Container Limitations" between 2026-01-20 18:52:49 and 2026-01-20 18:56:45

143
144
145
146
147
148
149
150

151
152
153
154
155
156
157
143
144
145
146
147
148
149

150
151
152
153
154
155
156
157







-
+







    > run alpine cmd="echo hi"
    hi
    > stop 0
    > remove 0

While that is a _bit_ shorter, keep in mind the one-liner it is replacing:

    $ podman run alpine echo hi
    $ docker run --rm alpine echo hi


# <a id="cmd"></a>The Host-Side Command Line Parser Is Not Bash

Because the RouterOS CLI isn’t a Bourne family shell, you do not get identical parsing as when typing `docker` commands into a Linux terminal. They added basic string splitting for the `cmd` argument in 7.20, so that this now works:

    > /container add remote-image=docker.io/library/alpine name=alpine