mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-02-14 17:49:59 +00:00
48 lines
742 B
YAML
48 lines
742 B
YAML
version: "2"
|
|
|
|
services:
|
|
|
|
rng:
|
|
build: rng
|
|
ports:
|
|
- "8001:80"
|
|
logging:
|
|
driver: gelf
|
|
options:
|
|
gelf-address: udp://localhost:12201
|
|
|
|
hasher:
|
|
build: hasher
|
|
ports:
|
|
- "8002:80"
|
|
logging:
|
|
driver: gelf
|
|
options:
|
|
gelf-address: udp://localhost:12201
|
|
|
|
webui:
|
|
build: webui
|
|
ports:
|
|
- "8000:80"
|
|
volumes:
|
|
- "./webui/files/:/files/"
|
|
logging:
|
|
driver: gelf
|
|
options:
|
|
gelf-address: udp://localhost:12201
|
|
|
|
redis:
|
|
image: redis
|
|
logging:
|
|
driver: gelf
|
|
options:
|
|
gelf-address: udp://localhost:12201
|
|
|
|
worker:
|
|
build: worker
|
|
logging:
|
|
driver: gelf
|
|
options:
|
|
gelf-address: udp://localhost:12201
|
|
|