Files
profilarr/docker-compose.yml
Sam Chau 6ff0e79a28 feature: regex patterns (#10)
- add new regex patterns, matched using PCRE2, with case insensitivity
- name, description, pattern, tags
- add unit tests, attempt to highlight matches
2025-02-05 16:09:59 +10:30

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: