forked from LaconicNetwork/kompose
* Add support for Config * Add deployment endpoint_mode support * Add docker compose 3.3 support * Add compose v3.3 support for openshift
15 lines
261 B
YAML
15 lines
261 B
YAML
version: "3.3"
|
|
services:
|
|
redis:
|
|
image: redis:latest
|
|
deploy:
|
|
replicas: 1
|
|
configs:
|
|
- source: my_config
|
|
target: /redis_config
|
|
uid: '103'
|
|
gid: '103'
|
|
mode: 0440
|
|
configs:
|
|
my_config:
|
|
file: ./my_config.txt |