-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
35 lines (33 loc) · 947 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
version: '3.8'
services:
api:
# image: djinn:test # local image
image: asia-northeast2-docker.pkg.dev/jinni-api-microservices/master-djinn-test/master:latest # GCP prod instance
ports:
- '80:80'
- '8888:8888'
env_file: ./.env
volumes:
- ./resources/avatars:/resources/avatars
# ollama:
# image: ollama/ollama:latest
# volumes:
# - ./ollama:/root/.ollama
# restart: always
# environment:
# - MODEL_NAME=llama3 # Specify the model you want to use
# telemetry:
# image: jaegertracing/all-in-one
# command: --collector.otlp.enabled=true
# # image: asia-northeast2-docker.pkg.dev/jinni-api-microservices/master-djinn-test/master:latest # GCP prod instance
# ports:
# - '16686:16686'
# - '4317:4317'
# env_file: ./.env
# volumes:
# avatars:
# driver: local
# driver_opts:
# type: none
# o: bind
# device: data/avatars