Skip to content

Commit

Permalink
Install Docker Compose via pip3 (getumbrel#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukechilds authored Mar 9, 2021
1 parent 9f9d6e4 commit 6237aee
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions docker-compose.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 6237aee

Please sign in to comment.