forked from LaconicNetwork/kompose
* Support file based secret * Fix issue about read-only volume path and add support to absolute path at long-syntax
14 lines
228 B
YAML
14 lines
228 B
YAML
version: "3.1"
|
|
services:
|
|
redis:
|
|
image: redis:latest
|
|
deploy:
|
|
replicas: 1
|
|
secrets:
|
|
- my_secret
|
|
- my_other_secret
|
|
secrets:
|
|
my_secret:
|
|
file: ./my_secret.txt
|
|
my_other_secret:
|
|
external: true |