2014-01-27 16:03:21 +01:00
---
layout: default
title: Fig environment variables reference
---
Environment variables reference
===============================
2014-08-08 20:00:10 +02:00
**Note:** Environment variables are no longer the recommended method for connecting to linked services. Instead, you should use the link name (by default, the name of the linked service) as the hostname to connect to. See the [fig.yml documentation ](yml.html#links ) for details.
2014-08-08 19:59:08 +02:00
2014-01-27 16:03:21 +01:00
Fig uses [Docker links] to expose services' containers to one another. Each linked container injects a set of environment variables, each of which begins with the uppercase name of the container.
2014-01-30 11:48:25 +01:00
To see what environment variables are available to a service, run `fig run SERVICE env` .
2014-01-27 16:03:21 +01:00
< b >< i > name</ i > \_PORT</ b >< br >
2014-08-08 20:00:10 +02:00
Full URL, e.g. `DB_PORT=tcp://172.17.0.5:5432`
2014-01-27 16:03:21 +01:00
< b >< i > name</ i > \_PORT\_< i > num</ i > \_< i > protocol</ i ></ b >< br >
2014-08-08 20:00:10 +02:00
Full URL, e.g. `DB_PORT_5432_TCP=tcp://172.17.0.5:5432`
2014-01-27 16:03:21 +01:00
< b >< i > name</ i > \_PORT\_< i > num</ i > \_< i > protocol</ i > \_ADDR</ b >< br >
2014-08-08 20:00:10 +02:00
Container's IP address, e.g. `DB_PORT_5432_TCP_ADDR=172.17.0.5`
2014-01-27 16:03:21 +01:00
< b >< i > name</ i > \_PORT\_< i > num</ i > \_< i > protocol</ i > \_PORT</ b >< br >
2014-08-08 20:00:10 +02:00
Exposed port number, e.g. `DB_PORT_5432_TCP_PORT=5432`
2014-01-27 16:03:21 +01:00
< b >< i > name</ i > \_PORT\_< i > num</ i > \_< i > protocol</ i > \_PROTO</ b >< br >
2014-08-08 20:00:10 +02:00
Protocol (tcp or udp), e.g. `DB_PORT_5432_TCP_PROTO=tcp`
2014-01-27 16:03:21 +01:00
< b >< i > name</ i > \_NAME</ b >< br >
2014-01-27 18:46:46 +01:00
Fully qualified container name, e.g. `DB_1_NAME=/myapp_web_1/myapp_db_1`
2014-01-27 16:03:21 +01:00
2014-09-24 13:53:26 +02:00
[Docker links]: http://docs.docker.com/userguide/dockerlinks/