forked from LaconicNetwork/kompose
Moves `docker-compose.yaml` to `docker-compose-counter.yaml` and replaces the default docker-compose.yaml with the example from the Kompose.io website. We also rename each file from yml to yaml. As well as do some slight modifications / formatting to docker-compose-bundle.dab
11 lines
132 B
YAML
11 lines
132 B
YAML
web:
|
|
image: tuna/docker-counter23
|
|
ports:
|
|
- "5000:5000"
|
|
links:
|
|
- redis
|
|
redis:
|
|
image: redis:3.0
|
|
ports:
|
|
- "6379"
|