Files
mission-control/docker-compose.simple.yml
Neo c56b173dcc
Some checks failed
CI / check (push) Has been cancelled
CI / installer (push) Has been cancelled
CI / e2e (push) Has been cancelled
Mission Control with OpenClaw hook - added simple API and updated configs
2026-02-20 12:13:36 +00:00

27 lines
474 B
YAML

version: '3.8'
services:
simple-api:
build:
context: .
dockerfile: simple-api.Dockerfile
ports:
- "3001:3001"
networks:
- mission-network
nginx:
image: nginx:alpine
ports:
- "3005:80"
volumes:
- ./nginx.conf:/etc/nginx/conf.d/default.conf
- ./frontend/public:/usr/share/nginx/html
depends_on:
- simple-api
networks:
- mission-network
networks:
mission-network:
driver: bridge