project setup

This commit is contained in:
fzzinchemical
2025-03-25 21:24:57 +01:00
commit aa36bbb3f2
10 changed files with 701 additions and 0 deletions

26
compose.yaml Executable file
View File

@@ -0,0 +1,26 @@
services:
ollama:
image: ollama/ollama:rocm
networks:
- my_network
volumes:
- ~/.ollama:/root/.ollama # shared ollama configuration
devices:
- /dev/kfd:/dev/kfd
- /dev/dri:/dev/dri
deno:
image: denoland/deno:alpine
build: .
ports:
- "6969:6969"
networks:
- my_network
working_dir: /app
volumes:
- ./:/app # shared deno configuration
command: deno task admin
networks:
my_network:
driver: bridge