-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
52 lines (49 loc) · 1.32 KB
/
Copy pathdocker-compose.yml
File metadata and controls
52 lines (49 loc) · 1.32 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
services:
postgres:
image: postgres:15-alpine
container_name: proxima_postgres
restart: unless-stopped
env_file: .env
environment:
POSTGRES_USER: ${POSTGRES_USER:-proxima}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-proxima_pass}
POSTGRES_DB: ${POSTGRES_DB:-proxima_db}
volumes:
- postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER:-proxima} -d ${POSTGRES_DB:-proxima_db}"]
interval: 10s
timeout: 5s
retries: 5
mongo:
image: mongo:7
container_name: proxima_mongo
restart: unless-stopped
env_file: .env
environment:
MONGO_INITDB_ROOT_USERNAME: ${MONGO_USER:-proxima}
MONGO_INITDB_ROOT_PASSWORD: ${MONGO_PASS:-proxima_pass}
MONGO_INITDB_DATABASE: ${MONGO_DB:-proxima_logs}
volumes:
- mongo_data:/data/db
healthcheck:
test: echo 'db.runCommand("ping").ok' | mongosh --quiet
interval: 10s
timeout: 5s
retries: 5
bot:
build: .
container_name: proxima_bot
restart: unless-stopped
env_file: .env
depends_on:
postgres:
condition: service_healthy
mongo:
condition: service_healthy
volumes:
- ./photo_matches:/app/photo_matches
- ./logs:/app/logs
volumes:
postgres_data:
mongo_data: