mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-02-14 17:49:59 +00:00
15 lines
212 B
YAML
15 lines
212 B
YAML
services:
|
|
www:
|
|
image: nginx
|
|
volumes:
|
|
- .:/usr/share/nginx/html
|
|
ports:
|
|
- 80
|
|
builder:
|
|
build: .
|
|
volumes:
|
|
- ..:/repo
|
|
working_dir: /repo/slides
|
|
command: ./build.sh forever
|
|
|