updated and runned and tested

This commit is contained in:
2025-07-25 09:57:16 +03:00
parent 5a47a06c0e
commit 8ca2d34dc6
35 changed files with 12456 additions and 2 deletions

21
docker-compose.dev.yml Normal file
View File

@@ -0,0 +1,21 @@
services:
backend_service:
container_name: backend_service
build:
context: .
dockerfile: backend/Dockerfile
target: builder
ports:
- "3000:3000"
env_file:
- api_env.env
environment:
NODE_ENV: development
command: npm run start:dev
restart: unless-stopped
volumes:
- ./backend:/usr/src/app
- node_modules:/usr/src/app/node_modules
volumes:
node_modules: