12 lines
205 B
YAML
12 lines
205 B
YAML
services:
|
|
homepg:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: homepg
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- .:/app
|
|
command: ["task", "serve"]
|