2014-05-01 01:43:01 +00:00
|
|
|
---
|
2016-01-19 18:08:53 +00:00
|
|
|
layout: "docs"
|
2014-05-01 01:43:01 +00:00
|
|
|
page_title: "Commands - Docker Provider"
|
2016-01-19 18:08:53 +00:00
|
|
|
sidebar_current: "providers-docker-commands"
|
|
|
|
description: |-
|
|
|
|
The Docker provider exposes some additional Vagrant commands that are
|
|
|
|
useful for interacting with Docker containers. This helps with your
|
|
|
|
workflow on top of Vagrant so that you have full access to Docker
|
|
|
|
underneath.
|
2014-05-01 01:43:01 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
# Docker Commands
|
|
|
|
|
|
|
|
The Docker provider exposes some additional Vagrant commands that are
|
|
|
|
useful for interacting with Docker containers. This helps with your
|
|
|
|
workflow on top of Vagrant so that you have full access to Docker
|
|
|
|
underneath.
|
|
|
|
|
2016-05-31 22:43:21 +00:00
|
|
|
### docker-exec
|
|
|
|
|
|
|
|
`vagrant docker-exec` can be used to run one-off commands against
|
|
|
|
a Docker container that is currently running. If the container is not running,
|
|
|
|
an error will be returned.
|
|
|
|
|
|
|
|
```sh
|
|
|
|
$ vagrant docker-exec app -- rake db:migrate
|
|
|
|
```
|
|
|
|
|
|
|
|
The above would run `rake db:migrate` in the context of an `app` container.
|
|
|
|
|
|
|
|
Note that the "name" corresponds to the name of the VM, **not** the name of the
|
|
|
|
Docker container. Consider the following Vagrantfile:
|
|
|
|
|
|
|
|
```ruby
|
|
|
|
Vagrant.configure(2) do |config|
|
|
|
|
config.vm.provider "docker" do |d|
|
|
|
|
d.image = "consul"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
```
|
|
|
|
|
|
|
|
This Vagrantfile will start the official Docker Consul image. However, the
|
|
|
|
associated Vagrant command to `docker-exec` into this instance is:
|
|
|
|
|
|
|
|
```sh
|
2016-06-01 00:04:08 +00:00
|
|
|
$ vagrant docker-exec -it -- /bin/sh
|
2016-05-31 22:43:21 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
In particular, the command is actually:
|
|
|
|
|
|
|
|
```sh
|
2016-06-01 00:04:08 +00:00
|
|
|
$ vagrant docker-exec default -it -- /bin/sh
|
2016-05-31 22:43:21 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Because "default" is the default name of the first defined VM. In a
|
|
|
|
multi-machine Vagrant setup as shown below, the "name" attribute corresponds
|
|
|
|
to the name of the VM, **not** the name of the container:
|
|
|
|
|
|
|
|
```ruby
|
|
|
|
Vagrant.configure do |config|
|
|
|
|
config.vm.define "web" do
|
|
|
|
config.vm.provider "docker" do |d|
|
|
|
|
d.image = "nginx"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
config.vm.define "consul" do
|
|
|
|
config.vm.provider "docker" do |d|
|
|
|
|
d.image = "consul"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
```
|
|
|
|
|
|
|
|
The following command is invalid:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
# Not valid
|
2016-06-01 00:04:08 +00:00
|
|
|
$ vagrant docker-exec -it nginx -- /bin/sh
|
2016-05-31 22:43:21 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
This is because the "name" of the VM is "web", so the command is actually:
|
|
|
|
|
|
|
|
```sh
|
2016-06-01 00:04:08 +00:00
|
|
|
$ vagrant docker-exec -it web -- /bin/sh
|
2016-05-31 22:43:21 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
For this reason, it is recommended that you name the VM the same as the
|
|
|
|
container. In the above example, it is unambiguous that the command to enter
|
|
|
|
the Consul container is:
|
|
|
|
|
|
|
|
```sh
|
2016-06-01 00:04:08 +00:00
|
|
|
$ vagrant docker-exec -it consul -- /bin/sh
|
2016-05-31 22:43:21 +00:00
|
|
|
```
|
|
|
|
|
2014-05-01 01:43:01 +00:00
|
|
|
### docker-logs
|
|
|
|
|
|
|
|
`vagrant docker-logs` can be used to see the logs of a running container.
|
|
|
|
Because most Docker containers are single-process, this is used to see
|
|
|
|
the logs of that one process. Additionally, the logs can be tailed.
|
|
|
|
|
|
|
|
### docker-run
|
|
|
|
|
|
|
|
`vagrant docker-run` can be used to run one-off commands against
|
|
|
|
a Docker container. The one-off Docker container that is started shares
|
|
|
|
all the volumes, links, etc. of the original Docker container. An
|
|
|
|
example is shown below:
|
|
|
|
|
2016-01-19 18:08:53 +00:00
|
|
|
```sh
|
2014-05-01 01:43:01 +00:00
|
|
|
$ vagrant docker-run app -- rake db:migrate
|
2016-01-19 18:08:53 +00:00
|
|
|
```
|
2014-05-01 01:43:01 +00:00
|
|
|
|
|
|
|
The above would run `rake db:migrate` in the context of an `app` container.
|