-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
74 lines (73 loc) · 1.99 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
70
71
72
73
74
version: '3.5'
services:
NexaAIOne:
container_name: NexaAIOne
build:
context: ./docker
dockerfile: NexaAIOne.Dockerfile
args: # override default args
SERVER_NAME: ${SERVER_NAME:-localhost}
COMPANY: ${COMPANY:-Company}
APP_PORT: ${APP_PORT:-443}
USER_NAME: ${USER_NAME:-admin}
USER_EMAIL: ${USER_EMAIL:[email protected]}
USER_PASSWORD: ${USER_PASSWORD:-34234234324324}
image: ubuntu:22.04
extra_hosts:
- 'host.docker.internal:host-gateway'
ports:
- '${APP_PORT:-443}:443'
restart: always
networks:
- NexaAIOne
depends_on:
- redis
- pgsql
redis:
image: 'redis:alpine'
ports:
- '${REDIS_PORT:-6379}:6379'
volumes:
- 'NexaAIOne-redis:/data'
networks:
- NexaAIOne
healthcheck:
test:
- CMD
- redis-cli
- ping
retries: 3
timeout: 5s
pgsql:
# image: 'postgres:15'
image: 'ankane/pgvector'
ports:
- '${FORWARD_DB_PORT:-5432}:5432'
environment:
PGPASSWORD: '${DB_PASSWORD:-secret}'
POSTGRES_DB: '${DB_DATABASE}'
POSTGRES_USER: '${DB_USERNAME}'
POSTGRES_PASSWORD: '${DB_PASSWORD:-secret}'
volumes:
- 'NexaAIOne-pgsql:/var/lib/postgresql/data'
networks:
- NexaAIOne
healthcheck:
test:
- CMD
- pg_isready
- '-q'
- '-d'
- '${DB_DATABASE}'
- '-U'
- '${DB_USERNAME}'
retries: 3
timeout: 5s
volumes:
NexaAIOne-redis:
driver: local
NexaAIOne-pgsql:
driver: local
networks:
NexaAIOne:
driver: bridge