mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-02-14 17:49:59 +00:00
31 lines
468 B
YAML
31 lines
468 B
YAML
version: "2"
|
|
|
|
services:
|
|
rng:
|
|
build: rng
|
|
image: ${REGISTRY_SLASH}rng${COLON_TAG}
|
|
ports:
|
|
- "8001:80"
|
|
|
|
hasher:
|
|
build: hasher
|
|
image: ${REGISTRY_SLASH}hasher${COLON_TAG}
|
|
ports:
|
|
- "8002:80"
|
|
|
|
webui:
|
|
build: webui
|
|
image: ${REGISTRY_SLASH}webui${COLON_TAG}
|
|
ports:
|
|
- "8000:80"
|
|
volumes:
|
|
- "./webui/files/:/files/"
|
|
|
|
redis:
|
|
image: redis
|
|
|
|
worker:
|
|
build: worker
|
|
image: ${REGISTRY_SLASH}worker${COLON_TAG}
|
|
|