Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions config/cloud-init-ubuntu-20.04.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#cloud-config

runcmd:
- /bin/bash
- -c
- |
#!/bin/bash
export DEBIAN_FRONTEND=noninteractive
apt-get update
apt-get install -y make git zip \
docker.io \
mysql-client
# required by HTTP::Tiny
apt-get install -y libio-socket-ssl-perl
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
# for NFS
apt-get install -y nfs-common
adduser ubuntu docker