mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-22 10:51:02 +01:00
- add new regex patterns, matched using PCRE2, with case insensitivity - name, description, pattern, tags - add unit tests, attempt to highlight matches
29 lines
608 B
YAML
29 lines
608 B
YAML
version: '3.8'
|
|
services:
|
|
frontend:
|
|
build: ./frontend
|
|
ports:
|
|
- '3000:3000'
|
|
volumes:
|
|
- ./frontend:/app
|
|
- /app/node_modules
|
|
environment:
|
|
- CHOKIDAR_USEPOLLING=true
|
|
|
|
backend:
|
|
build: ./backend
|
|
ports:
|
|
- '5000:5000'
|
|
volumes:
|
|
- ./backend:/app
|
|
- backend_data:/app/data
|
|
environment:
|
|
- FLASK_ENV=development
|
|
- TZ=Australia/Adelaide # Add this line
|
|
env_file:
|
|
- .env.1
|
|
restart: always
|
|
|
|
volumes:
|
|
backend_data:
|