-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.yml
49 lines (45 loc) · 1.15 KB
/
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
name: vsc-cv
services:
app:
image: vsc-cv
build: .
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ${VSC_CV_CONFIG_FILE:-./config.toml}:/app/config/config.toml
ports:
- ${VSC_CV_PORT:-8080}:8080
healthcheck:
test: ['CMD-SHELL', 'curl -f 127.0.0.1:8080/cv-api/v1']
interval: 20s
timeout: 3s
retries: 5
depends_on:
postgres:
condition: service_healthy
postgres:
image: postgres:17-alpine
environment:
POSTGRES_USER: ${DB_USER:-postgres}
POSTGRES_PASSWORD: ${DB_PASSWORD:-mysecretpassword}
POSTGRES_DB: ${DB_NAME:-postgres}
ports:
- ${DB_PORT:-5432}:5432
volumes:
- postgresd:/var/lib/postgresql/data
healthcheck:
test: ['CMD-SHELL', 'pg_isready -U ${DB_USER:-postgres} -d ${DB_NAME:-postgres}']
interval: 5s
timeout: 5s
retries: 5
cloudflared:
image: cloudflare/cloudflared:latest
profiles:
- cloudflared
command: tunnel --no-autoupdate run --token ${CLOUDFLARED_TOKEN:-}
logging:
driver: 'json-file'
options:
max-size: '10m'
max-file: '3'
volumes:
postgresd: