-
Notifications
You must be signed in to change notification settings - Fork 10
/
docker-compose.yml
45 lines (43 loc) · 911 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
36
37
38
39
40
41
42
43
44
45
version: '3.8'
services:
app:
container_name: alpaca-webui
image: forloopse/alpaca-webui:latest
build:
context: ./
dockerfile: Dockerfile
volumes:
- /app
- /app/node_modules
- /app/.next
restart: unless-stopped
networks:
- net
ports:
- '3033:3000'
weaviate:
container_name: weaviate
command:
- --host
- 0.0.0.0
- --port
- '8080'
- --scheme
- http
image: cr.weaviate.io/semitechnologies/weaviate:1.24.7
ports:
- 8083:8080
- 50051:50051
restart: on-failure:0
networks:
- net
environment:
QUERY_DEFAULTS_LIMIT: 25
AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: 'true'
PERSISTENCE_DATA_PATH: '/var/lib/weaviate'
DEFAULT_VECTORIZER_MODULE: 'none'
ENABLE_MODULES: ''
CLUSTER_HOSTNAME: 'node1'
networks:
net:
driver: bridge