initial commit of react frontend

This commit is contained in:
kappa118 2025-02-23 14:35:19 -05:00
parent 3a15cf6b7f
commit 0dfa001f3a
51 changed files with 35787 additions and 5 deletions

View file

@ -20,6 +20,16 @@ services:
- POSTGRES_PASSWORD=secret
- REDIS_HOST=redis
- CELERY_BROKER_URL=redis://redis:6379/0
- REACT_UI=true
ui:
image: alpine
container_name: dispatcharr_ui
volumes:
- ../frontend:/app
entrypoint: ["/bin/sh", "/app/entrypoint.sh"]
ports:
- 3031:3031
celery:
build:
@ -34,7 +44,7 @@ services:
extra_hosts:
- "host.docker.internal:host-gateway"
environment:
- POSTGRES_HOST=localhost
- POSTGRES_HOST=dispatcharr_db
- POSTGRES_DB=dispatcharr
- POSTGRES_USER=dispatch
- POSTGRES_PASSWORD=secret
@ -55,8 +65,8 @@ services:
- POSTGRES_DB=dispatcharr
- POSTGRES_USER=dispatch
- POSTGRES_PASSWORD=secret
volumes:
- postgres_data:/var/lib/postgresql/data
# volumes:
# - postgres_data:/var/lib/postgresql/data
redis:
image: redis:latest