Mission Control with OpenClaw hook - added simple API and updated configs
This commit is contained in:
27
docker-compose.simple.yml
Normal file
27
docker-compose.simple.yml
Normal file
@@ -0,0 +1,27 @@
|
||||
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
|
||||
Reference in New Issue
Block a user