-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstack.testing.yml
More file actions
97 lines (92 loc) · 2.58 KB
/
Copy pathstack.testing.yml
File metadata and controls
97 lines (92 loc) · 2.58 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
services:
postgres:
image: postgres:16-alpine
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: deribit_agent
volumes:
- postgres_data:/var/lib/postgresql/data
healthcheck:
test: ['CMD-SHELL', 'pg_isready -U postgres']
interval: 10s
timeout: 5s
retries: 5
networks:
- backend
deploy:
replicas: 1
restart_policy:
condition: on-failure
delay: 5s
redis:
image: redis:7-alpine
command: redis-server --requirepass ${REDIS_PASSWORD:-redis}
volumes:
- redis_data:/data
healthcheck:
test: ['CMD', 'redis-cli', '-a', '${REDIS_PASSWORD:-redis}', 'ping']
interval: 10s
timeout: 3s
retries: 5
networks:
- backend
deploy:
replicas: 1
restart_policy:
condition: on-failure
delay: 5s
# ---------------------------------------------------------------------------
# ML trainer — DB polling loop (no HTTP server)
# To enable GPU add a resources.reservations.devices block to deploy.
# ---------------------------------------------------------------------------
trainer:
build:
context: ./trainer
dockerfile: Dockerfile
image: deribit-trainer
environment:
DATABASE_URL: postgresql://postgres:postgres@postgres:5432/deribit_agent
MODELS_DIR: /app/models
POLL_INTERVAL: '30'
volumes:
- trainer_models:/app/models
networks:
- backend
depends_on:
- postgres
deploy:
replicas: 1
restart_policy:
condition: on-failure
delay: 5s
nestjs:
image: node:22
working_dir: /app
volumes:
- .:/app
- nestjs_node_modules:/app/node_modules
command: sh -c "yarn install && yarn run dev"
ports:
- '3031:3031'
env_file:
- .env
depends_on:
- postgres
- redis
networks:
- backend
deploy:
replicas: 1
restart_policy:
condition: on-failure
delay: 5s
volumes:
postgres_data:
redis_data:
trainer_models:
nestjs_node_modules:
networks:
backend:
driver: overlay
attachable: true