mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 09:17:49 +08:00

Added the checks and some tests One of the tests wasn't valid docker-compose.yml, that's been changed. Bad config throws an error and has a test Signed-off-by: Jack Laxson <jackjrabbit@gmail.com>
13 lines
211 B
YAML
13 lines
211 B
YAML
version: "3"
|
|
|
|
services:
|
|
db:
|
|
build: .
|
|
command: ./entrypoint.sh
|
|
image: docker.io/tonistiigi/db
|
|
webapp:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.webapp
|
|
args:
|
|
buildno: 1 |