feat: Initialize Storyline AI Gateway project with a local run script and Docker configuration files.
This commit is contained in:
13
docker-compose.yml
Normal file
13
docker-compose.yml
Normal file
@@ -0,0 +1,13 @@
|
||||
services:
|
||||
api:
|
||||
build: .
|
||||
container_name: storyline-ai-gateway
|
||||
ports:
|
||||
- "8000:8000"
|
||||
env_file:
|
||||
- .env
|
||||
restart: always
|
||||
volumes:
|
||||
- .:/app
|
||||
# Override command for development/auto-reload if needed
|
||||
command: uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
|
||||
Reference in New Issue
Block a user