-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
71 lines (67 loc) · 1.67 KB
/
Copy pathdocker-compose.yml
File metadata and controls
71 lines (67 loc) · 1.67 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
services:
postgres:
image: postgres:17-alpine
container_name: postgresql
restart: always
network_mode: host
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: ${DATABASE_PASSWORD}
POSTGRES_DB: postgres
volumes:
- postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
start_period: 0s
interval: 1s
timeout: 5s
retries: 5
backend:
build:
context: ./backend
dockerfile: Dockerfile
container_name: rovertchat-api
restart: always
network_mode: host
depends_on:
postgres:
condition: service_healthy
environment:
DATABASE_URL: postgresql://postgres:${DATABASE_PASSWORD}@localhost:5432/postgres
POSTGRES_PASSWORD: ${DATABASE_PASSWORD}
OLLAMA_API_BASE_URL: http://localhost:11434
DOMAIN: ${DOMAIN}
FRONTEND_ORIGINS: ${FRONTEND_ORIGINS}
JWT_SECRET_KEY: ${JWT_SECRET_KEY}
JWT_REFRESH_SECRET_KEY: ${JWT_REFRESH_SECRET_KEY}
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
container_name: rovertchat-frontend
restart: always
network_mode: host
depends_on:
- backend
environment:
VITE_API_BASE_URL: ${VITE_API_BASE_URL}
caddy:
image: caddy:2-alpine
container_name: rovertchat-caddy
restart: always
network_mode: host
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile
- caddy_data:/data
- caddy_config:/config
- caddy_logs:/var/log/caddy
depends_on:
- frontend
- backend
environment:
DOMAIN: ${DOMAIN}
volumes:
postgres_data:
caddy_data:
caddy_config:
caddy_logs: