-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
30 lines (28 loc) · 866 Bytes
/
docker-compose.yml
File metadata and controls
30 lines (28 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
version: '3.8'
services:
ebayos:
container_name: ebayos
build: .
image: ebayos:latest
restart: unless-stopped
ports:
- "4873:4873"
environment:
- NODE_ENV=development
- PORT=4873
# Set USE_HTTP=1 to serve over HTTP and skip browser certificate warning (local dev)
- USE_HTTP=1
# Points to the eBay listing assistant backend on the shared Docker network
- BACKEND_URL=http://ebay-listing-assistant:5000
# Gemini key for NL command parsing (intent parser runs client-side via Vite inject)
- GEMINI_API_KEY=${GEMINI_API_KEY}
networks:
- ebayos_net
# Join the existing backend network so we can reach ebay-listing-assistant by name
- ebay_backend
networks:
ebayos_net:
driver: bridge
ebay_backend:
external: true
name: ebay-listing-assistant_default