mirror of
https://github.com/docker/compose.git
synced 2025-08-30 22:18:15 +02:00
15 lines
231 B
YAML
15 lines
231 B
YAML
services:
|
|
base:
|
|
image: base
|
|
init: true
|
|
build:
|
|
context: .
|
|
dockerfile: base.dockerfile
|
|
service:
|
|
init: true
|
|
depends_on:
|
|
- base
|
|
build:
|
|
context: .
|
|
dockerfile: service.dockerfile
|