Skip to content

Build your own Image using Docker

Docker Build1 is one of Docker Engine's most used features. Whenever you are creating an image you are using Docker Build. Build is a key part of your software development life cycle allowing you to package and bundle your code and ship it anywhere.

Steps to build

  1. Install Docker (see docs.docker.com)
  2. Clone the repo
    Bash
    git clone https://github.com/rowland007/docker-mullvad.git
    
  3. cd docker-mullvad
  4. Run
    Bash
    docker build --no-cache --pull -t docker-mullvad:personal
    

Test your Image

Run

Bash
docker run -d --privileged -v ./config:/config -e MULLVAD_ACCOUNT_TOKEN=<changeme> --name mullvad docker-mullvad:personal