-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
51 lines (46 loc) · 1005 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
44
45
46
47
48
49
50
51
services:
# frontend:
# build:
# context: .
# dockerfile: ./docker/frontend/Dockerfile
# env_file: ./.env
# volumes:
# - .:/src:delegated
# ports:
# - "3000:3000"
# depends_on:
# - backend
# command: yarn run dev
backend:
build:
context: .
dockerfile: ./docker/backend/Dockerfile
env_file: ./.env
volumes:
- .:/app:delegated
ports:
- "5000:5000"
depends_on:
- database
command: uvicorn app.main:app --host 0.0.0.0 --port 5000 --reload
database:
image: postgres:15.3-alpine
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: biblio
ports:
- 5432:5432
volumes:
- bibliograph-pgdata:/var/lib/postgresql/data
alembic:
build:
context: .
dockerfile: ./docker/backend/Dockerfile
env_file:
- .env
command: alembic upgrade head
depends_on:
- database
volumes:
bibliograph-pgdata: