Spaces:
Runtime error
Runtime error
File size: 651 Bytes
fb38ec5 | 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 31 32 33 34 35 | services:
api:
build:
context: .
dockerfile: ./api/Dockerfile
args:
NODE_VERSION: 22.13.0
ports:
- "3000:3000"
- "9223:9223"
environment:
- DOMAIN=${DOMAIN:-localhost:3000}
- CDP_DOMAIN=${CDP_DOMAIN:-localhost:9223}
volumes:
- ./.cache:/app/.cache
networks:
- steel-network
ui:
build:
context: .
dockerfile: ./ui/Dockerfile
ports:
- "5173:80"
environment:
- API_URL=${API_URL:-http://api:3000}
depends_on:
- api
networks:
- steel-network
networks:
steel-network:
name: steel-network
driver: bridge |