Browse Source

Install Docker Compose via pip3 (#18)

master
Luke Childs 4 years ago
committed by GitHub
parent
commit
6237aee135
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      Vagrantfile
  2. 3
      docker-compose.override.yml

5
Vagrantfile

@ -45,11 +45,10 @@ Vagrant.configure(2) do |config|
# Install Docker
config.vm.provision "shell", inline: <<-SHELL
sudo apt-get install -y curl
sudo apt-get install -y curl python3-pip
curl -fsSL https://get.docker.com | sudo sh
sudo usermod -aG docker vagrant
sudo curl -L "https://github.com/docker/compose/releases/download/1.27.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
pip3 install docker-compose
SHELL
# Install Avahi

3
docker-compose.override.yml

@ -2,12 +2,15 @@ version: '3.7'
services:
dashboard:
image: getumbrel/dashboard
build:
context: ../umbrel-dashboard
dockerfile: Dockerfile.dev
volumes:
- ../umbrel-dashboard:/app
manager:
image: getumbrel/manager
build: ../umbrel-manager
middleware:
image: getumbrel/middleware
build: ../umbrel-middleware

Loading…
Cancel
Save