10 lines
255 B
YAML
10 lines
255 B
YAML
services:
|
|
hello-kube:
|
|
container_name: hello-kube
|
|
hostname: hello-kube
|
|
image: ${DOCKER_REGISTRY_USER}/${DOCKER_IMAGE}:${DOCKER_IMAGE_VERSION}
|
|
ports:
|
|
- '${PORT_LOCAL:-9090}:${PORT:-8080}' #local:docker
|
|
env_file:
|
|
- .env
|
|
|