Page MenuHomeDevCentral

env inside the container linked to web
ActivePublic

Authored by dereckson on May 9 2015, 22:23.
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
HOSTNAME=b23534c1ccf5
TERM=xterm
WEB_PORT=tcp://172.17.0.14:80
WEB_PORT_80_TCP=tcp://172.17.0.14:80
WEB_PORT_80_TCP_ADDR=172.17.0.14
WEB_PORT_80_TCP_PORT=80
WEB_PORT_80_TCP_PROTO=tcp
WEB_PORT_443_TCP=tcp://172.17.0.14:443
WEB_PORT_443_TCP_ADDR=172.17.0.14
WEB_PORT_443_TCP_PORT=443
WEB_PORT_443_TCP_PROTO=tcp
WEB_NAME=/thirsty_sammet/web
WEB_ENV_QUUX=foo
WEB_ENV_PHP_VERSION=5.6.8
WEB_ENV_PHP_INI_DIR=/usr/local/etc/php
WEB_ENV_PHP_BUILD_DEPS=bzip2 file libbz2-dev libcurl4-openssl-dev libjpeg-dev libmcrypt-dev libpng12-dev libreadline6-dev libssl-dev libxml2-dev
HOME=/root

Event Timeline

dereckson changed the title of this paste from untitled to env inside the container linked to web.
dereckson updated the paste's language from autodetect to autodetect.

To reproduce this environment, create a container with $QUUX = foo as environment variable, then link it as "web":

$ docker run -d -t --name fervent_almeida -e QUUX=foo nasqueron/nginx-php-fpm
$ docker run -it --rm --link fervent_almeida:web debian:jessie bash