tacticalrmm/docker
Josh Krawczyk a10b98f0d2 add debug_info to audit logs 2020-09-29 11:02:58 -04:00
..
api Merge pull request #83 from sadnub/fix-docker-go 2020-08-27 15:18:06 -07:00
app make env match new quasar.conf 2020-06-23 08:12:23 +00:00
meshcentral bump mesh 2020-09-25 05:03:22 +00:00
nginx-proxy Policy Tasks with fixes and docker changes 2020-07-02 17:33:20 -04:00
salt Policy Tasks with fixes and docker changes 2020-07-02 17:33:20 -04:00
.env.example fix email_user var in docker 2020-06-30 08:00:38 +00:00
docker-compose.dev.yml add back the celery winupdate queue 2020-09-08 02:57:05 +00:00
docker-compose.override.yml docker dev and test changes 2020-09-22 22:18:54 -04:00
docker-compose.yml totp setup rework 2020-09-22 22:18:54 -04:00
readme.md add debug_info to audit logs 2020-09-29 11:02:58 -04:00

readme.md

Docker Setup

  • install docker and docker-compose
  • Obtain wildcard cert or individual certs for each subdomain
  • You can copy any wildcard cert public and private key to the docker/nginx-proxy/certs folder.

Generate certificates with certbot (Optional if you already have the certs)

Install Certbot

sudo add-apt-repository ppa:certbot/certbot
sudo apt-get install certbot

Generate the wildcard certificate. Add the DNS entry for domain validation.

sudo certbot certonly --manual -d *.example.com --agree-tos --no-bootstrap --manual-public-ip-logging-ok --preferred-challenges dns

Copy the fullchain.pem and privkey.pem to the nginx-proxy/cert directory.

Configure DNS and Firewall

You will need to add DNS entries so that the three subdomains resolve to the IP of the docker host. There is a reverse proxy running that will route the hostnames to the correct container. On the host, you will need to ensure the firewall is open on tcp ports 80, 443, 4505, 4506.

Run the environment with Docker

Copy the .env.example to .env then change values in .env to match your environment

cd docker
sudo docker-compose up -d

You may need to run this twice if some containers fail to start

Create a super user

sudo docker-compose exec api python manage.py createsuperuser

Run the below command to get the download link for the mesh central exe. The dashboard will ask for this when you first sign in

sudo docker-compose exec api python manage.py get_mesh_exe_url

Connect to a container instance shell

The below command opens up a shell to the api service.

sudo docker-compose exec api /bin/bash

If /bin/bash doesn't work then /bin/sh might need to be used.

Using Docker for Dev (optional)

This allows you to edit the files locally and those changes will be presented to the containers. Hot Module Reload (Vue/webpack) and the Python equivalent will also work!

Setup

Files that need to be manually created are:

  • api/tacticalrmm/tacticalrmm/local_settings.py
  • web/.env

Make sure to add MESH_WS_URL="ws://meshcentral:443" in the local_settings.py file. This is needed for the mesh central setup

For HMR to work with vue you can copy .env.example and modify the setting to fit your dev environment.

Create Python Virtual Env

Each python container shares the same virtual env to make spinning up faster. It is located in api/tacticalrmm/env.

There is a container dedicated to creating and keeping this up to date. Prior to spinning up the environment you can run docker-compose -f docker-compose.yml -f docker-compose.dev.yml up venv to make sure the virtual env is ready. Otherwise the api and celery containers will fail to start.

Spinup the environment

Now run docker-compose -f docker-compose.yml -f docker-compose.dev.yml up -d to spin everything else up

This will mount the local vue and python files in the app container with hot reload. Does not require rebuilding when changes to code are made and the changes will take effect immediately!

Other Considerations

  • It is recommended that you use the vscode docker plugin to manage containers. Docker desktop works well too on Windows.