First version
This commit is contained in:
20
docker-compose.yml
Normal file
20
docker-compose.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
services:
|
||||
pg:
|
||||
pull_policy: never
|
||||
image: postgres:18
|
||||
environment:
|
||||
POSTGRES_USER: "postgres"
|
||||
POSTGRES_PASSWORD: "testing"
|
||||
POSTGRES_DB: "test"
|
||||
ports:
|
||||
- 5432:5432
|
||||
|
||||
frontend:
|
||||
pull_policy: never
|
||||
image: node:25
|
||||
network_mode: host
|
||||
entrypoint: /bin/bash
|
||||
command: "-c 'cd /mnt/calflow/frontend; npm install; npm run dev -- --host'"
|
||||
volumes:
|
||||
- ./:/mnt/calflow
|
||||
|
||||
Reference in New Issue
Block a user