-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (40 loc) · 889 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (40 loc) · 889 Bytes
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
version: '3.7'
networks:
internal:
driver: bridge
volumes:
postgres-data:
driver: local
app:
driver: local
services:
api:
build: .
depends_on:
- db
environment:
STAGE: test
SQLALCHEMY_DATABASE_URI: postgresql://postgres:postgres@postgres_python_api:5432/user_api
networks:
- internal
ports:
- 5000:5000
volumes:
- app:/usr/src/app/app
restart: always
db:
container_name: postgres_python_api
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: user_api
image: postgres:latest
networks:
- internal
ports:
- 5405:5432
restart: always
volumes:
- postgres-data:/var/lib/postgresql/data
- ./postgres/init.sql:/docker-entrypoint-initdb.d/init.sql
- ./postgres/csv:/var/lib/postgresql/csv