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