|
@@ -101,6 +101,8 @@ By default if there are existing containers for a service, `fig up` will stop an
|
|
|
|
|
|
|
|
Several environment variables can be used to configure Fig's behaviour.
|
|
Several environment variables can be used to configure Fig's behaviour.
|
|
|
|
|
|
|
|
|
|
+Variables starting with `DOCKER_` are the same as those used to configure the Docker command-line client. If you're using boot2docker, `$(boot2docker shellinit)` will set them to their correct values.
|
|
|
|
|
+
|
|
|
### FIG\_PROJECT\_NAME
|
|
### FIG\_PROJECT\_NAME
|
|
|
|
|
|
|
|
Set the project name, which is prepended to the name of every container started by Fig. Defaults to the `basename` of the current working directory.
|
|
Set the project name, which is prepended to the name of every container started by Fig. Defaults to the `basename` of the current working directory.
|
|
@@ -112,3 +114,11 @@ Set the path to the `fig.yml` to use. Defaults to `fig.yml` in the current worki
|
|
|
### DOCKER\_HOST
|
|
### DOCKER\_HOST
|
|
|
|
|
|
|
|
Set the URL to the docker daemon. Defaults to `unix:///var/run/docker.sock`, as with the docker client.
|
|
Set the URL to the docker daemon. Defaults to `unix:///var/run/docker.sock`, as with the docker client.
|
|
|
|
|
+
|
|
|
|
|
+### DOCKER\_TLS\_VERIFY
|
|
|
|
|
+
|
|
|
|
|
+When set to anything other than an empty string, enables TLS communication with the daemon.
|
|
|
|
|
+
|
|
|
|
|
+### DOCKER\_CERT\_PATH
|
|
|
|
|
+
|
|
|
|
|
+Configure the path to the `ca.pem`, `cert.pem` and `key.pem` files used for TLS verification. Defaults to `~/.docker`.
|