Skip to main content
Version: current

Container

This section covers RouterOS container support, including container configuration, virtual Ethernet interfaces, storage, and application examples. Use it to run supported containerized services on RouterOS devices.

πŸ“„οΈContainer - Postgres

PostgreSQL is a powerful, widely-used SQL database engine that serves as the backbone for numerous applications, ranging from small web projects to enterprise-level systems. This guide will walk you through the essential steps required to get PostgreSQL up and running on RouterOS. Additionally, this guide will provide you with the necessary instructions to set up pgAdminβ€”a feature-rich, web-based interface that allows you to easily manage your PostgreSQL database.

Sub-menu: /container Packages required: container

A container is MikroTik's implementation of Linux containers, allowing users to run containerized environments within RouterOS. The container feature works in the latest MikroTik RouterOS v7.x version. Containers are compatible with images from Docker Hub, GCR, Quay, or other providers, as well as those built on other devices, using the same formats supported by these providers. While RouterOS uses different syntax compared to Docker, it still achieves similar functionality.

Disclaimer​

danger

You need physical access to your RouterOS device to enable support for the container feature; it is disabled by default;

  • once the container feature is enabled, containers can be added/configured/started/stopped/removed remotely!
  • if your RouterOS device is compromised, containers can be used to easily install malicious software in your RouterOS device and over the network;
  • your RouterOS device is as secure as anything you run in a container;
  • if you run a container, there is no security guarantee of any kind;
  • running a 3rd party container image on your RouterOS device could open a security hole/attack vector/attack surface;
  • an expert with knowledge of how to build exploits will be able to jailbreak/elevate to root;

Security risks:​

  • When a security expert publishes his exploit research - anyone can apply such an exploit.
  • Someone can build a container image that can use the exploit AND provide a Linux root shell.
  • By using a root shell someone may leave a permanent backdoor/vulnerability in your RouterOS system even after the container image is removed and the container feature is disabled.
  • If a vulnerability is injected into the primary or secondary RouterBOOT (or vendor pre-loader), then even Netinstall may not be able to fix it.

Requirements​

Container package is compatible with arm, arm64 and x86 architectures. Use of remote-image (similar to docker pull) functionality requires a lot of free space in main memory, 16MB SPI flash boards may use pre-built images on USB or other disk media.

danger
  • An external disk supporting at least 100MB/s sequential read/write speed and 10K random iops is recommended. When using slower disks, container extraction times may become longer.
  • The Container package needs to be installed
  • For devices with EN7562CT CPU like the hEX Refresh, only arm32v5 container images are supported, meaning a limited number of containers can be run.

Sub-menu: /container

Properties​

PropertyDescription
auto-restart-interval(string; Default: )Specify an interval at which Container will be restarted on Container failure. Example: 10s
cmd (string; Default: )The main purpose of a CMD is to provide defaults for an executing container. These defaults can include an executable, or they can omit the executable, in which case you must specify an ENTRYPOINT instruction as well.
comment (string; Default: )Short description
dns (string; Default: )If the container needs different DNS, it can be configured here
domain-name (string; Default: )
entrypoint (string; Default:)An ENTRYPOINT allows you to specify an executable to run when starting the container. Example: /bin/sh
envlist (string; Default: )List of environmental variables (configured under /container/envs ) to be used with the container
file (string; Default: )A container *tar.gz tarball if the container is imported from a file
hostname (string; Default: )Assigning a hostname to a container helps in identifying and managing the container more easily
interface (string; Default: )veth interface to be used with the container
logging (string; Default: )if set to yes, all container-generated output will be shown in the RouterOS log
start-on-boot (string; Default: )if set to yes, the container will be started automatically on device start-up.
mountlists (string; Default: )mounts from /container/mounts/ sub-menu to be used with this container
mount (string; Default: )specify a directory to be used as a mount
remote-image (string; Default: )the container image name to be installed if an external registry is used (configured under /container/config/set registry-url=...)
root-dir (string; Default: )used to save container store outside main memory
stop-signal (string; Default: 15)defines which Linux signal is sent to terminate the container if it is still running after 10 seconds

different signals may allow graceful shutdown, immediate termination, or trigger application-specific actions
workdir (string; Default: )the working directory for cmd entrypoint
devices(string; Default: )passes through a physical device to the container
cpu-list(string; Default: )specifies which CPU cores the container is allowed to run on
user(string; Default: )sets the user and group the container process runs as before execution.
memory-high(int; Default: )RAM usage limit in bytes for a specific container
memory-max (int; Default: )max RAM usage limit in bytes per container (The container process will be terminated if the memory-max value is smaller than the container memory-current)
starting 7.23, this parameter cannot be set lower than 1MB, to avoid a situation where the container is terminated too early in the startup process
PropertyDescription
updateUpdates the container image. Automatically pulls from container repository and extracts it, replacing the original image.
killKills the specified running container.
restartRestarts the specified running container.
repullRe-pulls/extracts the container image.
shellEnters the container shell of a running container.
runStarts the container and enters its shell. Useful if container shuts down after running.

Container configuration​

Sub-menu: /container/config

PropertyDescription
registry-urlexternal registry url from where the container will be downloaded (default: https://lscr.io/)
tmpdircontainer extraction directory
memory-highRAM usage limit in bytes 1 - unlimited
usernameSpecifies the username for authentication (starting from ROS 7.8)
password sensitiveSpecifies the password for authentication (starting from ROS 7.8)

Examples​

Running Pi-hole​

Prerequisites​

  1. RouterOS device with RouterOS v7.4beta or later and installed Container package - How to install packages
  2. Physical access to a device to enable container mode - will be explained down below
  3. Attached HDD, SSD or USB drive for storage - formatted with a filesystem supported by RouterOS - How to format/manage disks

Steps to run Pi-hole​

  1. Enable Container mode and follow the instructions the command gives you (read more about Device-mode. You will need to confirm the device-mode with a press of the reset button, or a cold reboot (if using Containers on x86):

    /system/device-mode/update container=yes
    danger

    Device-mode limits container use by default, before granting container mode access - make sure your device is fully secured.

  2. Create a new veth interface and assign an IP address in a range that is unique in your network:

    /interface/veth/add name=veth1 address=172.17.0.2/24 gateway=172.17.0.1
    info

    The following configuration is equivalent to "bridge" networking mode in other Container engines such as Docker. It is possible to create a "host" equivalent configuration as well.

    Important: One veth interface can be used for many Containers. You can create multiple veth interfaces to create isolated networks for different Containers.

  3. Create a new bridge that is going to be used for your Containers and assign the same IP address that was used for the veth interface's gateway:

    /interface/bridge/add name=containers
    /ip/address/add address=172.17.0.1/24 interface=containers
  4. Add the veth interface to your newly created bridge:

    /interface/bridge/port/add bridge=containers interface=veth1
  5. Create a NAT for outgoing traffic:

    /ip/firewall/nat/add chain=srcnat action=masquerade src-address=172.17.0.0/24
  6. Create environment variables for the Container:

    /container/envs/add list=ENV_PIHOLE key=TZ value="Europe/Riga"
    /container/envs/add list=ENV_PIHOLE key=FTLCONF_webserver_api_password value="mysecurepassword"
    /container/envs/add list=ENV_PIHOLE key=DNSMASQ_USER value="root"
  7. Create mounted volumes for the Container:

    /container/mounts/add list=MOUNT_PIHOLE_PIHOLE src=disk1/volumes/pihole/pihole dst=/etc/pihole
    /container/mounts/add list=MOUNT_PIHOLE_DNSMASQD src=disk1/volumes/pihole/dnsmasq.d dst=/etc/dnsmasq.d
    warning

    src= points to RouterOS location (could also be src=disk1/etc_pihole if, for example, you decide to put configuration files on external USB media), dst= points to defined location (consult containers manual/wiki/github for information on where to point). If src directory does not exist on first time use then it will be populated with whatever container has in dst location.

    warning

    It is highly recommended to place any Container volume on an attached disk to your RouterOS device. Avoid placing Container volumes on the built-in storage.

  8. Configure to use a specific Container repository, for example, to use Docker.io:

    /container/config/set registry-url=https://registry-1.docker.io tmpdir=disk1/tmp
  9. Add a Container:

    /container/add remote-image=pihole/pihole interface=veth1 root-dir=disk1/images/pihole mountlists=MOUNT_PIHOLE_PIHOLE,MOUNT_PIHOLE_DNSMASQD envlist=ENV_PIHOLE name=pihole
    tip

    If you wish to see container output in /log/print , then add logging=yes when creating a Container, root-dir should point to an external drive. It's not recommended to use internal storage for Containers.

    Important: There are multiple ways you can get a Container image, check the Adding a Container image section if you need an alternative way of adding a Container image.

    Important: Adding a Container will start downloading or extracting it, the Container itself will not be started after it has been added, you need to start it manually for the first time after it has been downloaded/extracted.

  10. Check the status of your Container and wait until downloading/extracting has been finished and the status=stopped :

    /container/print
  11. Start the Container:

    /container/start pihole
  12. Create a port forwarding for your Container:

    /ip/firewall/nat
    add action=dst-nat chain=dstnat dst-address=192.168.88.1 dst-port=80 protocol=tcp to-addresses=172.17.0.2 to-ports=80
  13. You should be able to access the Pi-hole web panel by navigating to https://192.168.88.1/admin/ in your web browser.

  14. To start using Pi-hole on your devices, change their DNS configuration to use 192.168.88.1 as your DNS server.

Adding a Container image​

There are multiple ways you can get a Container image running on your RouterOS device. Check the examples below.

Option A: Get an image from an external library​

Set registry-url (for downloading containers from the Docker registry) and set extract directory (tmpdir) to the attached USB media:

/container/config/set registry-url=https://registry-1.docker.io tmpdir=disk1/tmp

pull an image:

/container/add remote-image=pihole/pihole interface=veth1 root-dir=disk1/images/pihole mountlists=MOUNT_PIHOLE_PIHOLE,MOUNT_PIHOLE_DNSMASQD envlist=ENV_PIHOLE name=pihole

The image will be automatically pulled and extracted to root-dir. Status can be checked by using

/container/print

Option B: Import image from PC​

You can use your PC running either Docker or Podman to download your required container image and save it to an archive. We recommend using Podman since it is easier to build and download containers for specific architectures using Podman.

  1. Download your required image based on the architecture of your RouterOS device.

    #For ARM64
    podman pull --arch=arm64 docker.io/pihole/pihole

    #For ARM
    podman pull --arch=arm docker.io/pihole/pihole

    #For AMD64
    podman pull --arch=amd64 docker.io/pihole/pihole
  2. Save the container image to an archive.

    podman save pihole > pihole.tar
  3. Upload the archive to your RouterOS device, for example:

    rsync -av pihole.tar admin@192.168.88.1:/data/disk1/
    tip

    You can also use Winbox to upload files!

  4. Create a Container on your RouterOS device using the uploaded container image archive file.

    /container/add file=disk1/pihole.tar interface=veth1 root-dir=disk1/pihole mountlists=MOUNT_PIHOLE_PIHOLE,MOUNT_PIHOLE_DNSMASQD envlist=ENV_PIHOLE name=pihole

Option C: Build an image on PC​

You can build your own Containers and use them on your RouterOS device. While you can build Containers using Docker, we recommend using Podman since it is easier to build Containers for a specific architecture using Podman.

  1. Get source files for your required Container image, for example by using git.

    git clone https://github.com/pi-hole/docker-pi-hole.git
    cd docker-pi-hole
  2. Build the Container image by specifying the Dockerfile or Containerfile and the target architecture.

    #For ARM64
    podman build --platform linux/arm64 --tag pihole -f ./src/Dockerfile

    #For ARM
    podman build --platform linux/arm --tag pihole -f ./src/Dockerfile

    #For AMD64
    podman build --platform linux/amd64 --tag pihole -f ./src/Dockerfile
  3. Save the container image to an archive.

    podman save pihole > pihole.tar
  4. Upload the archive to your RouterOS device, for example.

    rsync -av pihole.tar admin@192.168.88.1:/data/disk1/
    tip

    You can also use Winbox to upload files!

  5. Create a Container on your RouterOS device using the uploaded container image archive file.

    /container/add file=disk1/pihole.tar interface=veth1 root-dir=disk1/pihole mountlists=MOUNT_PIHOLE_PIHOLE,MOUNT_PIHOLE_DNSMASQD envlist=ENV_PIHOLE name=pihole
Alternative: Using Docker to build Container images​

To use Dockerfile and make your own docker package - docker needs to be installed as well as buildx or another builder toolkit.

After installation check if extra architectures are available:

docker buildx ls

should return:

NAME/NODE DRIVER/ENDPOINT STATUS PLATFORMS
default * docker
default default running linux/amd64, linux/arm64, linux/riscv64, linux/ppc64le, linux/s390x, linux/386, linux/arm/v7, linux/arm/v6

If not - install extra architectures:

docker run --privileged --rm tonistiigi/binfmt --install all

Pull or create your project with Dockerfile included and build, extract image (adjust --platform if needed):

git clone https://github.com/pi-hole/docker-pi-hole.git
cd docker-pi-hole
docker buildx build --no-cache --platform arm64 --output=type=docker -t pihole .
docker save pihole > pihole.tar

Upload pihole.tar to your RouterOS device.

Images and objects on the Linux system can be pruned

Create a container from the tar image

/container/add file=pihole.tar interface=veth1 mountlists=MOUNT_PIHOLE_PIHOLE,MOUNT_PIHOLE_DNSMASQD envlist=ENV_PIHOLE name=pihole

Networking examples​

Bridge with NAT​

In this networking setup, all Containers use the same veth interface and communicate with each other without any Firewall restrictions, but you need to forward ports in order to allow access to a Container's port.

For example, a database Container needs to communicate with a web application Container; the web application needs the port 80 to be exposed to the world, but the database Container does not need any ports to be exposed to the world.

  • The network configuration:

    /interface/veth/add name=veth1 address=172.17.0.2/24 gateway=172.17.0.1
    /interface/bridge/add name=containers
    /ip/address/add address=172.17.0.1/24 interface=containers
    /interface/bridge/port/add bridge=containers interface=veth1
    /ip/firewall/nat
    add chain=srcnat action=masquerade src-address=172.17.0.0/24
    add action=dst-nat chain=dstnat dst-address=192.168.88.1 dst-port=80 protocol=tcp to-addresses=172.17.0.2 to-ports=80
  • The database Container configuration:

    /container/envs/add list=ENV_POSTGRES key=POSTGRES_DB value="webapp"
    /container/envs/add list=ENV_POSTGRES key=POSTGRES_PASSWORD value="<changeme>"
    /container/envs/add list=ENV_POSTGRES key=POSTGRES_USER value="webapp"
    /container/envs/add list=ENV_POSTGRES key=PGDATA value="/var/lib/postgresql/data/pgdata"
    /container/envs/add list=ENV_POSTGRES key=POSTGRES_INITDB_ARGS value="--encoding='UTF8' --lc-collate='C' --lc-ctype='C'"
    /container/mounts/add list=MOUNT_POSTGRES src=disk1/volumes/postgres/data dst=/var/lib/postgresql/data
    /container/add remote-image=postgres:15 interface=veth1 root-dir=disk1/images/postgres mountlists=MOUNT_POSTGRES envlist=ENV_POSTGRES name=postgres start-on-boot=yes logging=yes
  • The webapp Container configuration:

    /container/add remote-image=dpage/pgadmin4 interface=veth1 root-dir=disk1/images/pgadmin name=pgadmin start-on-boot=yes logging=yes

In this example, the pgadmin port 80 is accessible to everyone, but the postgres port 5432 is not accessible to everyone; it can only be accessed through either pgadmin as 127.0.0.1 or through the RouterOS device running the Container as 172.17.0.2.

Isolated Containers​

In this networking setup, you have multiple Containers and you want to make sure that some of them can communicate without Firewall restrictions, but some need to be isolated from other Containers. For example, you might want to create two database Containers and isolate them.

  • The network configuration.

    /interface/veth/add name=veth1 address=172.17.0.2/24 gateway=172.17.0.1
    /interface/veth/add name=veth2 address=172.18.0.2/24 gateway=172.18.0.1
    /interface/bridge/add name=containers1
    /interface/bridge/add name=containers2
    /ip/address/add address=172.17.0.1/24 interface=containers1
    /ip/address/add address=172.18.0.1/24 interface=containers2
    /interface/bridge/port/add bridge=containers1 interface=veth1
    /interface/bridge/port/add bridge=containers2 interface=veth2
    /ip/firewall/nat
    add chain=srcnat action=masquerade src-address=172.17.0.0/24
    add chain=srcnat action=masquerade src-address=172.18.0.0/24
    add action=dst-nat chain=dstnat dst-address=192.168.88.1 dst-port=81 protocol=tcp to-addresses=172.17.0.2 to-ports=80
    add action=dst-nat chain=dstnat dst-address=192.168.88.1 dst-port=82 protocol=tcp to-addresses=172.18.0.2 to-ports=80
  • The first and second database container configurations.

    /container/envs/add list=ENV_POSTGRES1 key=POSTGRES_DB value="webapp1"
    /container/envs/add list=ENV_POSTGRES1 key=POSTGRES_PASSWORD value="<changeme>"
    /container/envs/add list=ENV_POSTGRES1 key=POSTGRES_USER value="webapp1"
    /container/envs/add list=ENV_POSTGRES1 key=PGDATA value="/var/lib/postgresql/data/pgdata"
    /container/envs/add list=ENV_POSTGRES1 key=POSTGRES_INITDB_ARGS value="--encoding='UTF8' --lc-collate='C' --lc-ctype='C'"
    /container/mounts/add list=MOUNT_POSTGRES1 src=disk1/volumes/postgres1/data dst=/var/lib/postgresql/data
    /container/add remote-image=postgres:15 interface=veth1 root-dir=disk1/images/postgres1 mountlists=MOUNT_POSTGRES1 envlist=ENV_POSTGRES1 name=postgres1 start-on-boot=yes logging=yes
    /container/envs/add list=ENV_POSTGRES2 key=POSTGRES_DB value="webapp2"
    /container/envs/add list=ENV_POSTGRES2 key=POSTGRES_PASSWORD value="<changeme>"
    /container/envs/add list=ENV_POSTGRES2 key=POSTGRES_USER value="webapp2"
    /container/envs/add list=ENV_POSTGRES2 key=PGDATA value="/var/lib/postgresql/data/pgdata"
    /container/envs/add list=ENV_POSTGRES2 key=POSTGRES_INITDB_ARGS value="--encoding='UTF8' --lc-collate='C' --lc-ctype='C'"
    /container/mounts/add list=MOUNT_POSTGRES2 src=disk1/volumes/postgres2/data dst=/var/lib/postgresql/data
    /container/add remote-image=postgres:15 interface=veth2 root-dir=disk1/images/postgres2 mountlists=MOUNT_POSTGRES2 envlist=ENV_POSTGRES2 name=postgres2 start-on-boot=yes logging=yes
  • The first and second webapp container configurations.

    /container/add remote-image=dpage/pgadmin4 interface=veth1 root-dir=disk1/images/pgadmin1 name=pgadmin1 start-on-boot=yes logging=yes
    /container/add remote-image=dpage/pgadmin4 interface=veth2 root-dir=disk1/images/pgadmin2 name=pgadmin2 start-on-boot=yes logging=yes

In this example, pgadmin1 is able to reach postgres1, but is not able to reach postgres2. Similarly, pgadmin2 is able to reach postgres2, but is not able to reach postgres1.

Container in Layer2 network​

In this networking setup, your Container is directly attached to a Layer2 network with other physical network devices. This networking setup is equivalent to "host" networking mode on other Container engines such as Docker.

danger

In this networking setup, all the ports on your Container are exposed. This is considered insecure, but does slightly improve the Container's networking performance.

  • The networking configuration.

    /interface/veth/add name=veth1 address=192.168.88.2/24 gateway=192.168.88.1
    /interface/bridge/port/add bridge=bridge interface=veth1
  • In case your RouterOS device has services running on the same port, you need to disable them.

    /ip/service/disable [find where name=www]
  • The webapp configuration.

    /container/add remote-image=dpage/pgadmin4 interface=veth1 root-dir=disk1/images/pgadmin name=pgadmin start-on-boot=yes logging=yes

In this example, pgadmin Container does not need port forwarding, but all other ports that the Container is using are now accessible to others on the same Layer2 network. This type of setup should only be used when your application requires that the Container has an IP address in the same Layer2 network such as applications that use broadcast traffic for service discovery (in most cases such requirements can still be bypassed by using NAT).

IPv4 and IPv6 for Container​

In this networking setup your Container will be able to communicate over IPv4 and IPv6. The solution is based on the Bridge with NAT networking setup.

  • The network configuration.

    /ip/address
    add address=172.17.0.1/24 interface=containers
    /ip/firewall/nat
    add action=masquerade chain=srcnat src-address=172.17.0.0/24
    add action=dst-nat chain=dstnat dst-address=192.168.88.1 dst-port=80 protocol=tcp to-addresses=172.17.0.2 to-ports=80
    /ipv6/address
    add address=fd8d:5ad2:24:2::1 interface=containers
    /ipv6/firewall/nat
    add action=masquerade chain=srcnat src-address=fd8d:5ad2:24:2::/64
    add action=dst-nat chain=dstnat dst-address=0:0:0:0:0:ffff:c0a8:5801 dst-port=80 protocol=udp to-address=fd8d:5ad2:24:2::2 to-ports=80
    /interface/veth
    add address=172.17.0.2/24,fd8d:5ad2:24:2::2/64 gateway=172.17.0.1 gateway6=fd8d:5ad2:24:2::1 name=veth1
    /interface/bridge/port/add bridge=containers interface=veth1
  • The webapp container configuration.

    /container/add remote-image=nginx interface=veth1 root-dir=disk1/images/nginx name=nginx start-on-boot=yes logging=yes

Healthceck​

Starting RouterOS 7.23 healthcheck support has been implemented in RouterOS. Healthcheck is a mechanisms that helps verify that the application within the container is running correctly.

Healthchecks rely on standard exit codes. The command used for the healthcheck should return 0 when the application is healthy and a non-zero exit code when it is unhealthy.

In most cases, on containers running a web interface, a simple HTTP GET request to localhost is enough to verify if the application is responding properly.

PropertyDescription
healthcheck-cmd (string; Default:)command used for healtcheck
healthcheck-interval (time; Default: 00:00:30)time interval in format HH:MM:SS
healthcheck-retries (int; Default: 3)in the case of a failed check - number of retries before container application is considered unhealthy
healthcheck-start-interval (time; Default: 00:00:05)time between healthchecks in the start period
healthcheck-start-period (time; Default: 00:00:00)provides time for the container to start. any failures within the start period will not be added to the retries counter
healthcheck-status (string)current health status of container. displays the current status of the application within the container as well as the output from the probe
healthcheck-timeout (time; Default: 00:00:30)if healthcheck probing takes longer than the specified period, the check will count as a fail

Healthcheck example​

For this exmaple we will be setting up a HomeAssistant container and set up a simple healtcheck on it.

For a guide on setting up a HomeAssistant container, please refer to our HomeAssistant setup guide

To set up the E-mail tool. Please refer to our E-mail documentation page

  1. Check your container name
[admin@ROSE] > container print
Flags: S - STOPPED, R - RUNNING
Columns: NAME, ROOT-DIR, INTERFACE, MEMORY-CURRENT, CPU-USAGE, CONTAINER-SIZE, DATA-SIZE, TAG
# NAME ROOT-DIR INTERFACE MEMORY-CURRENT CPU-USAGE CONTAINER-SIZE DATA-SIZE TAG
1 S home-assistant /nvme1/apps/home-assistant/home-assistant_root veth-home-assistant 0 2201.9MiB 471.9KiB docker.io/homeassistant/home-assistant:latest
  1. After a container has been created, we can enable healtcheck on it by setting the healtcheck command. For this specific container. We can increase the healthcheck-interval as well as specify a start-period as HomeAssistant is a heavy container and may start slower on some devices.
/container/set app-home-assistant healthcheck-cmd="curl -f https://localhost:8123" healthcheck-interval="00:01:00" healthcheck-start-period="00:02:00"

If succesful and the container starts - you should see the container running with the "Healthy" status. Aditionally, the healtcheck-status field is populated with the current status of the container as well as the output from the curl command.

[admin@ROSE] > container print proplist=name,healthcheck-status
Flags: S - STOPPED, R - RUNNING, H - HEALTHY
Columns: NAME, HEALTHCHECK-STATUS
# NAME HEALTHCHECK-STATUS

H app-home-assistant good, output: % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed

As an extra step, you can create a script that polls the container status and sends a notification to your e-mail if healthcheck fails and add a scheduler to run the script regularly.

  1. Create the script:
/system script
add name=unhealthy-container-alert source="
:global lastState\
\n:local currentState \"\"\
\n:local msg \"\"\
\n:foreach i in=[/container find where unhealthy] do={\
\n:local name [/container get \$i name]\
\n:set currentState (\$currentState . \$name . \";\")\
\n}\
\n:if ([:len \$currentState] = 0) do={\
\n:set lastState \"\"\
\n} else={\
\n:if (\$currentState != \$lastState) do={\
\n:set lastState \$currentState\
\n:foreach i in=[/container find where unhealthy] do={\
\n:local name [/container get \$i name]\
\n:set msg (\$msg . \$name . \" is UNHEALTHY\\n\")\
\n}\
\n/tool e-mail send to=\"admin@example.com\" subject=\"Unhealthy container(s)\" body=\$msg\
\n}\
\n}"
warning

Make sure to replace admin@example.com with your email.

  1. Create the scheduler:
/system scheduler
add interval=2m name=container-healthcheck-alert on-event="/system/script/run unhealthy-container-alert"

Tips and tricks​

  • Containers use up a lot of disk space. USB/SATA, NVMe attached media is highly recommended. For devices with USB ports - USB to SATA adapters can be used with 2.5" drives - for extra storage and faster file operations.
  • RAM usage can be limited by using:
/container/config/set memory-high=200M

this will soft limit RAM usage - if RAM usage goes over the high boundary, the processes of the cgroup are throttled and put under heavy reclaim pressure.

  • For starting containers after a router reboot use the start-on-boot option (starting from 7.6beta6):

    /container/print
    0 name="2e679415-2edd-4300-8fab-a779ec267058" tag="test_arm64:latest" os="linux" arch="arm" interface=veth2
    root-dir=disk1/alpine mountslists="" dns="" logging=yes start-on-boot=yes status=running

    /container/set 0 start-on-boot=yes
  • It is possible to get to a running container shell:

    /container/shell 0
  • It's possible to set the container timeout in seconds, otherwise it will stay open indefinitely:

    /container/shell 0 timeout=120
  • Enable logging to get output from the container:

    /container/set 0 logging=yes
  • Some containers will require additional privileges in order to be able to run properly:

    /container/set 0 user=0:0
  • You can execute commands inside a Container with a specific user and without invoking /bin/sh:

    /container/shell nextcloud user=www-data cmd="php /var/www/html/cron.php" no-sh
  • Starting from version 7.11beta5 multiple addresses and ipv6 addresses can be added:

    /interface/veth/add address=172.17.0.3/16,fd8d:5ad2:24:2::2/64 gateway=172.17.0.1 gateway6=fd8d:5ad2:24:2::1
  • Active running /dev/ nodes to container:

    /dev/full /dev/null /dev/random /dev/tty /dev/urandom /dev/zero /dev/console /dev/net/tun /dev/kvm /dev/fuse
  • Using the Devices parameter, it is possible to allow the serial terminal to be exposed to the container.

/container/set your-container devices=serial0:""
info

To allow the container to use the serial console port, you must first free the serial console used by RouterOS under /system/console