mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-03-02 17:30:20 +00:00
17 lines
226 B
YAML
17 lines
226 B
YAML
version: "2"
|
|
|
|
services:
|
|
www:
|
|
image: nginx
|
|
volumes:
|
|
- .:/usr/share/nginx/html
|
|
ports:
|
|
- 80
|
|
builder:
|
|
build: .
|
|
volumes:
|
|
- ..:/repo
|
|
working_dir: /repo/slides
|
|
command: ./build.sh forever
|
|
|