Skip to content
Asaf Paris-Mandoki edited this page Jun 8, 2017 · 3 revisions

Welcome to the colab-server wiki!

Setup

Installing Docker in ubuntu

sudo apt install docker
sudo apt install docker-compose
sudo usermod -aG docker $USER

Installing Docker in Arch

pacman -S docker docker-compose
usermod -aG docker $USER
systemctl enable docker
systemctl start docker

Docker

docker ps -a #list all biult containrers
docker exec -it CONTAINER_NAME bash #run a terminal inside the container (useful to find out the file structure)

Troubleshooting

For deeper logs add --log-level debug as an argument for gunicorn

Clone this wiki locally