mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-02-14 17:49:59 +00:00
13 lines
199 B
YAML
13 lines
199 B
YAML
version: "2"
|
|
|
|
services:
|
|
backend:
|
|
image: registry:2
|
|
frontend:
|
|
image: jpetazzo/hamba
|
|
command: 5000 backend:5000
|
|
ports:
|
|
- "127.0.0.1:5000:5000"
|
|
depends_on:
|
|
- backend
|