-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
55 lines (51 loc) · 1.23 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
version: '3.8'
services:
postgres:
image: postgres:14
environment:
POSTGRES_USER: ${DB_USERNAME}
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_DB: ${DB_DATABASE}
volumes:
- ./data/db/postgres:/var/lib/postgresql/data
ports:
- '5432:5432'
healthcheck:
test: ['CMD', 'pg_isready', '-q', '-d', 'tskmgr', '-U', 'tskmgr']
interval: 10s
timeout: 5s
retries: 5
migrations:
image: mathpaquette/tskmgr-migrations:latest
environment:
DB_HOST: ${DB_HOST}
DB_PORT: ${DB_PORT}
DB_USERNAME: ${DB_USERNAME}
DB_PASSWORD: ${DB_PASSWORD}
DB_DATABASE: ${DB_DATABASE}
depends_on:
postgres:
condition: service_healthy
api:
image: mathpaquette/tskmgr-api:latest
environment:
DB_HOST: ${DB_HOST}
DB_PORT: ${DB_PORT}
DB_USERNAME: ${DB_USERNAME}
DB_PASSWORD: ${DB_PASSWORD}
DB_DATABASE: ${DB_DATABASE}
volumes:
- ./data/api/files:/app/files
ports:
- '3333:3333'
depends_on:
- migrations
frontend:
image: mathpaquette/tskmgr-frontend:latest
environment:
PORT: ${FRONTEND_PORT}
API_URL: ${API_URL}
ports:
- '8080:8080'
depends_on:
- api