Skip to content

Commit f4e634a

Browse files
Run update.sh
1 parent a373a49 commit f4e634a

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

influxdb/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ $ docker run --name=influxdb -d -p 8086:8086 influxdb
125125
Run the influx client in another container:
126126

127127
```console
128-
$ docker run --rm --net=container:influxdb -it influxdb influx -host influxdb
128+
$ docker run --rm --link=influxdb -it influxdb influx -host influxdb
129129
```
130130

131131
At the moment, you cannot use `docker exec` to run the influx client since `docker exec` will not properly allocate a TTY. This is due to a current bug in Docker that is detailed in [docker/docker#8755](https://github.com/docker/docker/issues/8755).

php/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,13 @@ Remember, you must install dependencies for your extensions manually. If an exte
127127

128128
Some extensions are not provided with the PHP source, but are instead available through [PECL](https://pecl.php.net/). To install a PECL extension, use `pecl install` to download and compile it, then use `docker-php-ext-enable` to enable it:
129129

130+
```dockerfile
131+
FROM php:7.1-fpm
132+
RUN pecl install redis-3.1.0 \
133+
&& pecl install xdebug-2.5.0 \
134+
&& docker-php-ext-enable redis xdebug
135+
```
136+
130137
```dockerfile
131138
FROM php:5.6-fpm
132139
RUN apt-get update && apt-get install -y libmemcached-dev zlib1g-dev \

0 commit comments

Comments
 (0)