mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-03-03 01:40:19 +00:00
30 lines
333 B
YAML
30 lines
333 B
YAML
rng:
|
|
build: rng
|
|
ports:
|
|
- "8001:80"
|
|
|
|
hasher:
|
|
build: hasher
|
|
ports:
|
|
- "8002:80"
|
|
|
|
webui:
|
|
build: webui
|
|
links:
|
|
- redis
|
|
ports:
|
|
- "8000:80"
|
|
volumes:
|
|
- "webui/files/:/files/"
|
|
|
|
redis:
|
|
image: redis
|
|
|
|
worker:
|
|
build: worker
|
|
links:
|
|
- rng
|
|
- hasher
|
|
- redis
|
|
|