fixed scheduling not loading unless logged
This commit is contained in:
@@ -2,10 +2,10 @@ networks:
|
||||
usda-vision-network:
|
||||
driver: bridge
|
||||
|
||||
volumes:
|
||||
supabase-db:
|
||||
driver: local
|
||||
supabase-storage:
|
||||
# volumes:
|
||||
# supabase-db:
|
||||
# driver: local
|
||||
# supabase-storage:
|
||||
|
||||
services:
|
||||
# ============================================================================
|
||||
@@ -17,7 +17,7 @@ services:
|
||||
# - Filter by label: docker compose ps --filter "label=com.usda-vision.service=supabase"
|
||||
# - Or use service names: docker compose ps supabase-*
|
||||
#
|
||||
# NOTE: Currently commented out to test Supabase CLI setup from management-dashboard-web-app
|
||||
# NOTE: Supabase CLI and docker-compose use root supabase/
|
||||
|
||||
# # # Supabase Database
|
||||
# # supabase-db:
|
||||
@@ -400,6 +400,8 @@ services:
|
||||
video-remote:
|
||||
container_name: usda-vision-video-remote
|
||||
image: node:20-alpine
|
||||
tty: true
|
||||
stdin_open: true
|
||||
working_dir: /app
|
||||
environment:
|
||||
- CHOKIDAR_USEPOLLING=true
|
||||
@@ -424,6 +426,8 @@ services:
|
||||
vision-system-remote:
|
||||
container_name: usda-vision-vision-system-remote
|
||||
image: node:20-alpine
|
||||
tty: true
|
||||
stdin_open: true
|
||||
working_dir: /app
|
||||
environment:
|
||||
- CHOKIDAR_USEPOLLING=true
|
||||
@@ -447,6 +451,8 @@ services:
|
||||
scheduling-remote:
|
||||
container_name: usda-vision-scheduling-remote
|
||||
image: node:20-alpine
|
||||
tty: true
|
||||
stdin_open: true
|
||||
working_dir: /app
|
||||
env_file:
|
||||
- ./management-dashboard-web-app/.env
|
||||
@@ -466,6 +472,14 @@ services:
|
||||
- "3003:3003"
|
||||
networks:
|
||||
- usda-vision-network
|
||||
develop:
|
||||
watch:
|
||||
- path: ./scheduling-remote
|
||||
action: restart
|
||||
ignore:
|
||||
- node_modules/
|
||||
- dist/
|
||||
- .git/
|
||||
|
||||
media-api:
|
||||
container_name: usda-vision-media-api
|
||||
|
||||
Reference in New Issue
Block a user