Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 8 additions & 10 deletions docker-compose.unified.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@ services:
dockerfile: Dockerfile
target: development
container_name: archon-ui
restart: unless-stopped
ports:
- "${BIND_IP:-127.0.0.1}:${ARCHON_UI_PORT:-3737}:3737"
environment:
Expand All @@ -191,11 +190,11 @@ services:
- app-network
- proxy
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:3737 || exit 1"]
test: ["CMD", "curl", "-f", "http://localhost:3737"]
interval: 15s
timeout: 10s
retries: 3
start_period: 90s
timeout: 15s
retries: 5
start_period: 60s
volumes:
# Development volumes for live editing
- ./archon-ui-main/src:/app/src
Expand All @@ -220,7 +219,6 @@ services:
VITE_API_URL: ${VITE_API_URL:-http://localhost:8181}
VITE_ARCHON_SERVER_PORT: ${VITE_ARCHON_SERVER_PORT:-}
container_name: archon-ui
restart: unless-stopped
ports:
- "${BIND_IP:-127.0.0.1}:${ARCHON_UI_PORT:-3737}:3737"
environment:
Expand All @@ -242,11 +240,11 @@ services:
- app-network
- proxy
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:3737 || exit 1"]
test: ["CMD", "curl", "-f", "http://localhost:3737"]
interval: 15s
timeout: 10s
retries: 3
start_period: 90s
timeout: 15s
retries: 5
start_period: 60s
# No volumes in production
depends_on:
archon-server:
Expand Down