Initial commit: restructure project with Docker Compose setup

This commit is contained in:
Admin
2026-05-26 20:16:01 +05:00
commit 47b15787f3
48 changed files with 6074 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
version: '3.8'
services:
backend:
build: ./backend
container_name: psychologist-backend
restart: unless-stopped
ports:
- "3001:3001"
env_file:
- .env
networks:
- app-network
frontend:
build:
context: ./frontend
args:
- VITE_API_URL=/api
container_name: psychologist-frontend
restart: unless-stopped
ports:
- "80:80"
depends_on:
- backend
networks:
- app-network
networks:
app-network:
driver: bridge