Initial commit — Electron + React frontend, Express/Docker backend, members & project management
This commit is contained in:
14
docker-compose.yml
Normal file
14
docker-compose.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
services:
|
||||
backend:
|
||||
build: ./backend
|
||||
container_name: project-manager-api
|
||||
ports:
|
||||
- "${PORT_BACKEND:-4000}:${PORT_BACKEND:-4000}"
|
||||
environment:
|
||||
- PORT=${PORT_BACKEND:-4000}
|
||||
volumes:
|
||||
- db_data:/app/data
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
db_data:
|
||||
Reference in New Issue
Block a user