This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh -e | |
# This script will DESTROY /dev/xvdb and /dev/xvdc and remount them | |
# for Docker temp and volume storage. | |
# It is intended for EC2 instances with 2 ephemeral SSD instance stores | |
# like the c3.xlarge instance type. | |
service docker stop || true | |
# Setup Instance Store 0 for Docker Temp | |
# (set in /etc/default/docker) |