Skip to content

Commit

Permalink
Add Docker CE to base
Browse files Browse the repository at this point in the history
  • Loading branch information
svpernova09 committed Aug 3, 2021
1 parent 22dd8f6 commit 8b1f706
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions scripts/provision.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,18 @@ python3-pip re2c supervisor unattended-upgrades whois vim cifs-utils bash-comple
# Set My Timezone
ln -sf /usr/share/zoneinfo/UTC /etc/localtime

# Install docker-ce
curl -fsSL https://get.docker.com | bash -s

# Enable vagrant user to run docker commands
usermod -aG docker vagrant

# Install docker-compose
curl \
-L "https://github.com/docker/compose/releases/download/1.26.0/docker-compose-$(uname -s)-$(uname -m)" \
-o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose

if "$SKIP_PHP"; then
echo "SKIP_PHP is being used, so we're not installing PHP"
else
Expand Down

0 comments on commit 8b1f706

Please sign in to comment.