11 lines
273 B
YAML
11 lines
273 B
YAML
services:
|
|
eleventy:
|
|
build: .
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
# Sync your local files with the container so hot-reloading works
|
|
- .:/app
|
|
# Prevent your local machine from overwriting the container's node_modules
|
|
- /app/node_modules
|