inital commit
This commit is contained in:
17
docker-compose.yml
Normal file
17
docker-compose.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
services:
|
||||
web:
|
||||
build: .
|
||||
container_name: demo-sites-builder
|
||||
command: ["bash", "/app/docker/entrypoint.sh"]
|
||||
ports:
|
||||
- "8014:8014"
|
||||
volumes:
|
||||
- .:/app
|
||||
environment:
|
||||
PORT: "8014"
|
||||
DJANGO_DEBUG: "1"
|
||||
DJANGO_SECRET_KEY: "dev-only-secret-key-change-me"
|
||||
OLLAMA_URL: "http://host.docker.internal:11434"
|
||||
OLLAMA_MODEL: "llama3.1"
|
||||
extra_hosts:
|
||||
- "host.docker.internal:host-gateway"
|
||||
Reference in New Issue
Block a user