2022-06-04 23:36:18 +02:00
|
|
|
services:
|
|
|
|
grafana-build:
|
2023-10-13 02:06:56 +02:00
|
|
|
# FIXME image name with or without slash? Docker Hub or private registry? With or without *_BUILD_DATE? FIXME
|
2022-06-04 23:36:18 +02:00
|
|
|
image: "grafana:${GRAFANA_VERSION}"
|
|
|
|
profiles: ["build", "build-grafana"]
|
|
|
|
build:
|
|
|
|
context: "build-context/grafana"
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
args:
|
|
|
|
EXAMPLE_ARG_FOR_DOCKERFILE: "${EXAMPLE_ARG_FROM_ENV_FILE}"
|
|
|
|
GRAFANA_VERSION: "${GRAFANA_VERSION}"
|
|
|
|
nginx-build:
|
2023-10-13 02:06:56 +02:00
|
|
|
# FIXME image name with or without slash? Docker Hub or private registry? With or without *_BUILD_DATE? FIXME
|
2022-06-04 23:36:18 +02:00
|
|
|
image: "nginx:${NGINX_VERSION}"
|
|
|
|
profiles: ["build", "build-nginx"]
|
|
|
|
build:
|
|
|
|
context: "build-context/nginx"
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
args:
|
|
|
|
EXAMPLE_ARG_FOR_DOCKERFILE: "${EXAMPLE_ARG_FROM_ENV_FILE}"
|
|
|
|
NGINX_VERSION: "${NGINX_VERSION}"
|