-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
69 lines (66 loc) · 1.55 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
version: '3.4'
services:
weaviate:
command:
- --host
- 0.0.0.0
- --port
- '8000'
- --scheme
- http
image: semitechnologies/weaviate:1.19.6
network_mode: host
restart: always
env_file:
- ./weaviate.env
volumes:
- /mnt/md0/docker/weaviate:/var/lib/weaviate
- /mnt/md0/backups/weaviate:/backups
# frontend:
# build:
# context: ./web
# dockerfile: Dockerfile.frontend
# command:
# - npm
# - run
# - dev
# - --port
# - '8005'
# tty: true
# image: frontend
# volumes:
# - ./web:/app
# environment:
# - NODE_ENV=development
# deploy:
# restart_policy:
# condition: on-failure
# delay: 5s
# max_attempts: 5
# network_mode: host
# backend:
# build:
# context: ./
# dockerfile: Dockerfile.backend
# command:
# - uvicorn
# - api.main:app
# - --host
# - "0.0.0.0"
# - --port
# - "3000"
# - --reload
# tty: true
# image: backend
# volumes:
# - ./src:/app/src
# env_file:
# ./.env
# deploy:
# restart_policy:
# condition: on-failure
# delay: 5s
# max_attempts: 5
# network_mode: host
#