File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
POSTGRES_USER = user_name
2
2
POSTGRES_PASSWORD = change_password
3
- POSTGRES_HOST = resources-psql
3
+ POSTGRES_HOST = resources-postgres
4
4
POSTGRES_DB = resources-psql
5
5
FLASK_ENV = development
6
6
FLASK_DEBUG = 1
Original file line number Diff line number Diff line change 1
1
DOCKER := docker
2
2
DOCKER_COMPOSE := docker-compose
3
3
RESOURCES_CONTAINER := resources-api
4
- RESOURCES_DB := resources-psql
4
+ RESOURCES_DB := resources-postgres
5
5
FLASK := flask
6
6
7
7
.PHONY : all
Original file line number Diff line number Diff line change @@ -12,13 +12,13 @@ services:
12
12
ports :
13
13
- 8000:8000
14
14
links :
15
- - resources-psql
15
+ - resources-postgres
16
16
depends_on :
17
- - resources-psql
17
+ - resources-postgres
18
18
19
- resources-psql :
19
+ resources-postgres :
20
20
image : postgres:10.1-alpine
21
- container_name : resources-psql
21
+ container_name : resources-postgres
22
22
environment :
23
23
- POSTGRES_USER=${POSTGRES_USER}
24
24
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
You can’t perform that action at this time.
0 commit comments