mirror of
https://github.com/aljazceru/sciencestr.git
synced 2025-12-17 05:54:24 +01:00
38 lines
665 B
YAML
38 lines
665 B
YAML
version: '3'
|
|
services:
|
|
ipfs_host:
|
|
image: ipfs/kubo:latest
|
|
volumes:
|
|
- /home/lio/ipfs/staging/:/export
|
|
- /home/lio/ipfs/data:/data/ipfs
|
|
ports:
|
|
- 4001:4001
|
|
- 4001:4001/udp
|
|
- 127.0.0.1:8080:8080
|
|
- 127.0.0.1:5001:5001
|
|
restart: always
|
|
|
|
qdrant:
|
|
image: qdrant/qdrant
|
|
ports:
|
|
- 6333:6333
|
|
- 6334:6334
|
|
restart: always
|
|
|
|
science_bot:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile-science-bot
|
|
depends_on:
|
|
- api
|
|
|
|
api:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile-api
|
|
ports:
|
|
- 6000:6000
|
|
depends_on:
|
|
- ipfs_host
|
|
- qdrant
|
|
restart: always |