mirror of https://github.com/docker/docs.git
Fix minor typo in example of documentation
I suppose the directory where to extract postgresql should be called postgres instead of postgress
This commit is contained in:
parent
31e485758e
commit
b968f80922
|
|
@ -646,7 +646,7 @@ version bumps are easier to maintain, as seen in the following example:
|
||||||
```dockerfile
|
```dockerfile
|
||||||
ENV PG_MAJOR=9.3
|
ENV PG_MAJOR=9.3
|
||||||
ENV PG_VERSION=9.3.4
|
ENV PG_VERSION=9.3.4
|
||||||
RUN curl -SL https://example.com/postgres-$PG_VERSION.tar.xz | tar -xJC /usr/src/postgress && …
|
RUN curl -SL https://example.com/postgres-$PG_VERSION.tar.xz | tar -xJC /usr/src/postgres && …
|
||||||
ENV PATH=/usr/local/postgres-$PG_MAJOR/bin:$PATH
|
ENV PATH=/usr/local/postgres-$PG_MAJOR/bin:$PATH
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue