mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-22 02:41:11 +01:00
- pulls now correctly identify merge conflicts and enter a merge state - user resolves each file individually - commit resolve merge state - allows users to keep custom changes and pull in updates - improve commit message component - seperated commit / add functionality
27 lines
580 B
YAML
27 lines
580 B
YAML
version: '3.8'
|
|
services:
|
|
frontend:
|
|
build: ./frontend
|
|
ports:
|
|
- '3000:3000'
|
|
volumes:
|
|
- ./frontend:/app
|
|
- /app/node_modules
|
|
environment:
|
|
- VITE_API_URL=http://localhost:5000
|
|
- CHOKIDAR_USEPOLLING=true
|
|
|
|
backend:
|
|
build: ./backend
|
|
ports:
|
|
- '5000:5000'
|
|
volumes:
|
|
- ./backend:/app
|
|
- backend_data:/app/data
|
|
environment:
|
|
- FLASK_ENV=development
|
|
env_file:
|
|
- .env.1
|
|
volumes:
|
|
backend_data:
|