refactor: change ports to non-standard (backend: 8765, frontend: 4321)

This commit is contained in:
TheRaiwy
2026-06-01 13:35:58 +03:00
parent e11df2ff92
commit df81f7abcc
6 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ services:
context: ./backend
dockerfile: Dockerfile
ports:
- "8000:8000"
- "8765:8765"
environment:
- PYTHONUNBUFFERED=1
volumes:
@@ -16,7 +16,7 @@ services:
context: ./frontend
dockerfile: Dockerfile
ports:
- "3000:3000"
- "4321:4321"
depends_on:
- backend
restart: unless-stopped