mirror of
https://github.com/softwareshinobi/self-hosted-wordpress-server.git
synced 2025-10-04 04:00:13 +08:00
27 lines
264 B
Bash
Executable file
27 lines
264 B
Bash
Executable file
#!/bin/bash
|
|
|
|
##
|
|
|
|
reset
|
|
|
|
clear
|
|
|
|
##
|
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
##
|
|
|
|
cd /tmp/
|
|
|
|
rm -rf install-docker
|
|
|
|
git clone https://github.com/softwareshinobi/provision-aws-ec2-ubuntu-docker.git install-docker
|
|
|
|
cd install-docker
|
|
|
|
sudo bash provision.bash
|
|
|
|
echo "finished installing docker"
|