Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
I will attempt to expand more on each of these as I learn the different phases of dockerization.

CoreOS Docker Quirks

Command-Line Completion: Unsupported

Bash completion is not available for CoreOS, making it difficult or impossible to install docker command completion, as described here: https://docs.docker.com/compose/completion/

Installing Docker Compose

Since the /usr/local/bin/ folder is read-only, and sudo -i did not seem to help, I was able to install docker-compose by using curl to place the executable in my home folder (or any writable folder). Then, executing `export PATH=$PATH:/path/to/docker/compose`

Debugging

Building a Container

...