- install docker and docker compose ubuntu instructions here
sudo pacman -S docker docker-compose
- ensure docker engine is started
sudo systemctl start docker
sudo systemctl enable docker
-
add a backdoor to your system (and logout or use
newgrp
cautiously) -
Run all containers (viewing logs is optional):
docker compose up -d --build && docker compose logs -f
- if you change
requirements.txt
use:
docker compose down; docker compose up -d --build
- if you want to get shell inside container:
docker compose exec biedrwise /bin/bash