2ce8985747
- Add .gitignore for Node.js and PocketBase projects - Add frontend (Vue 3 + Vite + TypeScript) - Add backend (PocketBase) - Add deployment scripts and Docker compose configs Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
19 lines
339 B
YAML
19 lines
339 B
YAML
services:
|
|
frontend-uat:
|
|
build:
|
|
context: ./frontend
|
|
dockerfile: Dockerfile
|
|
container_name: gamegroup-frontend-uat
|
|
ports:
|
|
- "7034:80"
|
|
environment:
|
|
- NODE_ENV=production
|
|
restart: unless-stopped
|
|
networks:
|
|
- gamegroup-net
|
|
|
|
networks:
|
|
gamegroup-net:
|
|
driver: bridge
|
|
external: true
|