10 lines
250 B
YAML
10 lines
250 B
YAML
services:
|
|
mysql-build:
|
|
image: "mysql:${MYSQL_VERSION}"
|
|
profiles: ["build"]
|
|
build:
|
|
context: "build-context"
|
|
dockerfile: Dockerfile
|
|
args:
|
|
MYSQL_VERSION: "${MYSQL_VERSION}"
|