slides/docker-compose.yml
Ameya Shenoy 3d3094567d
fix: docker fixes
Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
2022-06-08 14:28:43 +05:30

17 lines
352 B
YAML

version: '3.8'
services:
slides:
image: codingcoffee/slides-dev
build:
context: .
dockerfile: Dockerfile.dev
restart: unless-stopped
entrypoint: npm start -- --host 0.0.0.0
volumes:
- ./0003-intro-v2/index.html:/revealjs/index.html
- ./0003-intro-v2/images:/revealjs/images
ports:
- 8001:8000