@kevinmarrec/create-cloudstack-app
Version:
CLI that scaffolds an opinionated Bun & Vue fullstack application.
22 lines (20 loc) • 407 B
YAML
x-common:
working_dir: /app
volumes:
- ./:/app
user: 1000:1000
services:
backend:
<<:
image: oven/bun:1-alpine
entrypoint: [bun, --cwd, backend, dev]
ports:
- 3000:3000
frontend:
<<:
depends_on:
- backend
image: imbios/bun-node:22-alpine
entrypoint: [bun, --cwd, frontend, dev, --host, 0.0.0.0]
ports:
- 5173:5173