Spaces:
No application file
No application file
File size: 616 Bytes
c20f20c | 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 | version: '3.8'
services:
iniclaw:
build:
context: ./ini_claw
dockerfile: Dockerfile
ports:
- "7070:7070"
environment:
- BRIDGE_SECRET=${BRIDGE_SECRET}
- INICLAW_PORT=7070
volumes:
- ./ini_claw/.classroom-cache:/app/.classroom-cache
restart: always
openmaic:
build:
context: ./OpenMAIC
dockerfile: Dockerfile
ports:
- "3000:3000"
environment:
- INICLAW_GATEWAY_URL=http://iniclaw:7070
- BRIDGE_SECRET=${BRIDGE_SECRET}
- USE_INICLAW=true
- PORT=3000
depends_on:
- iniclaw
restart: always
|