forked from LaconicNetwork/kompose
if volumes in docker file is defined as
volumes:
- .:/code
Then the PVC created by kompose will containes .(dot) in it.
.-persistentvolumeclaim.yaml
14 lines
192 B
YAML
14 lines
192 B
YAML
version: '2'
|
|
services:
|
|
web:
|
|
image: flask_web
|
|
command: python app.py
|
|
ports:
|
|
- "5000:5000"
|
|
volumes:
|
|
- .:/code
|
|
links:
|
|
- redis
|
|
redis:
|
|
image: redis
|