forked from LaconicNetwork/kompose
11 lines
180 B
YAML
11 lines
180 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
foo:
|
|
image: ${DOCKER_REGISTRY-}foo:${IMAGE_TAG:-latest}
|
|
build: .
|
|
environment:
|
|
- VERSION=${IMAGE_TAG:-latest}
|
|
ports:
|
|
- 80:80
|