Mikrotik RouterOS inside Docker container
Find a file
2019-01-11 17:24:19 +03:00
.dockerignore init 2018-08-22 15:55:57 +03:00
.gitignore init 2018-08-22 15:55:57 +03:00
cron.sh Release of RouterOS changed to 6.42.10 2018-11-20 20:06:12 +03:00
docker-compose.yml sample of docker-compose.yml added, readme.md updated 2019-01-11 17:24:19 +03:00
Dockerfile Release of RouterOS changed to 6.42.11 2019-01-10 00:30:03 +03:00
entrypoint.sh init 2018-08-22 15:55:57 +03:00
LICENSE license added, readme updated 2018-08-22 15:59:29 +03:00
README.md sample of docker-compose.yml added, readme.md updated 2019-01-11 17:24:19 +03:00

Mikrotik RouterOS in Docker

This extrasmall image was created for tests purpose only, for example on this project based unit testing of routeros-api-php library. If you need fully functional "RouterOS in Docker" for production usage look at VR Network Lab project.

How to use

Create your own Dockerfile

List of all available tags is here, latest will be used by default.

FROM evilfreelancer/docker-routeros
ADD ["your-scripts.sh", "/"]
RUN /your-scripts.sh

Use image from docker hub

docker pull evilfreelancer/docker-routeros
docker run -d -p 22:22 -p 8728:8728 -p 8729:8729 -ti evilfreelancer/docker-routeros

Use in docker-compose.yml

Example is here.

version: "3"

services:

  routeros-6-42:
    image: evilfreelancer/docker-routeros:6.42
    restart: unless-stopped
    ports:
      - "12222:22"
      - "12223:23"
      - "18728:8728"
      - "18729:8729"

  routeros-6-43:
    image: evilfreelancer/docker-routeros:6.43
    restart: unless-stopped
    ports:
      - "22223:23"
      - "22222:22"
      - "28728:8728"
      - "28729:8729"

Build from sources

For this you need download project and build everything from scratch:

git clone https://github.com/EvilFreelancer/docker-routeros.git
cd docker-routeros
docker build . --tag ros
docker run -d -p 2222:22 -p 8728:8728 -p 8729:8729 -p 25900:5900 -ti ros

Now you can connect to your RouterOS container via VNC protocol (on localhost 25900 port) and via SSH (on localhost 2222 port).

List of exposed ports

For access via VNC: 5900

Default ports of RouterOS: 21, 22, 23, 80, 443, 8291, 8728, 8729