Add docker compose for build
Some checks failed
Release / test (push) Failing after 5s
Release / push-docker-image (push) Has been skipped

This commit is contained in:
Mario Romero 2024-12-06 21:30:00 -03:00
parent fbf23b523b
commit 3e22c60cf6

11
docker-compose.yml Normal file
View File

@ -0,0 +1,11 @@
services:
homepg:
build:
context: .
dockerfile: Dockerfile
container_name: homepg
ports:
- "3000:3000"
volumes:
- .:/app
command: ["task", "serve"]