-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
43 lines (41 loc) · 1007 Bytes
/
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
# docker-compose.dev.yml
version: '3'
services:
web:
build:
context: .
dockerfile: ./Dockerfile
volumes:
- .:/app/web
environment:
POSTGRES_ADDR: postgres
POSTGRES_DATABASE: savage_tracking
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
DATABASE_URL: postgresql://postgres:postgres@postgres:5432/savage_tracking?schema=public
JWT_SECRET: "CHANGE_THIS"
TZ: Asia/Taipei
RFID_PKEY: "CHANGE_THIS"
depends_on:
postgres:
condition: service_healthy
restart: always
ports:
- 3000:3000
postgres:
image: postgres:16-alpine
restart: always
environment:
POSTGRES_DB: savage_tracking
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
volumes:
- pgdata:/var/lib/postgresql/data
healthcheck:
test:
["CMD", "pg_isready", "-U", "postgres", "-d", "savage_tracking"]
interval: 5s
timeout: 10s
retries: 5
volumes:
pgdata: {}