mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-03-02 17:30:20 +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
|