Initial commit.
Basic docker deployment with Local LLM integration and simple game state.
This commit is contained in:
20
docker-compose.yml
Normal file
20
docker-compose.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
text-adventure:
|
||||
build: .
|
||||
container_name: text-adventure-app
|
||||
stdin_open: true
|
||||
tty: true
|
||||
volumes:
|
||||
# Mount the current directory to /app for development
|
||||
- .:/app
|
||||
environment:
|
||||
# Environment variables can be set here
|
||||
- PYTHONUNBUFFERED=1
|
||||
# If you need to connect to a service on the host machine
|
||||
# network_mode: "host"
|
||||
|
||||
# For production, you might want to use:
|
||||
ports:
|
||||
- "8000:8000"
|
||||
Reference in New Issue
Block a user