mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-02-20 01:00:22 +08:00
26 lines
456 B
YAML
26 lines
456 B
YAML
version: "3.5"
|
|
services:
|
|
my-service:
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: .
|
|
command: /app/print-random-stuff.sh
|
|
depends_on:
|
|
- my-service2
|
|
ports:
|
|
- 123:321
|
|
|
|
my-service2:
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: .
|
|
command: /app/print-random-stuff.sh
|
|
ports:
|
|
- 12345:12345
|
|
|
|
my-service3:
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: .
|
|
command: /app/print-random-stuff.sh
|