mirror of https://github.com/docker/docs.git
Indentation fix (#4491)
This commit is contained in:
parent
207acedee2
commit
4204df859d
|
@ -1629,19 +1629,21 @@ services:
|
|||
image: nginx:alpine
|
||||
ports:
|
||||
- "80:80"
|
||||
|
||||
volumes:
|
||||
- type: volume
|
||||
source: mydata
|
||||
target: /data
|
||||
volume:
|
||||
nocopy: true
|
||||
- type: bind
|
||||
source: ./static
|
||||
target: /opt/app/static
|
||||
|
||||
networks:
|
||||
webnet:
|
||||
|
||||
volumes:
|
||||
- type: volume
|
||||
source: mydata
|
||||
target: /data
|
||||
volume:
|
||||
nocopy: true
|
||||
- type: bind
|
||||
source: ./static
|
||||
target: /opt/app/static
|
||||
mydata:
|
||||
```
|
||||
|
||||
> **Note:** The long syntax is new in v3.2
|
||||
|
|
Loading…
Reference in New Issue