We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4c924c commit 6e0ac79Copy full SHA for 6e0ac79
docker-compose.yml
@@ -6,11 +6,11 @@ services:
6
restart: unless-stopped
7
env_file: ./.env
8
environment:
9
- - POSTGRES_USER=$POSTGRESDB_USER
10
- - POSTGRES_PASSWORD=$POSTGRESDB_ROOT_PASSWORD
11
- - POSTGRES_DB=$POSTGRESDB_DATABASE
+ - POSTGRES_USER=postgres
+ - POSTGRES_PASSWORD=sa123
+ - POSTGRES_DB=bezkoder_db
12
ports:
13
- - $POSTGRESDB_LOCAL_PORT:$POSTGRESDB_DOCKER_PORT
+ - 5433:5432
14
volumes:
15
- db:/var/lib/postgres
16
app:
@@ -20,7 +20,7 @@ services:
20
21
22
23
- - $NODE_LOCAL_PORT:$NODE_DOCKER_PORT
+ - 6868:8080
24
25
- DB_HOST=postgresdb
26
- DB_USER=$POSTGRESDB_USER
@@ -31,4 +31,4 @@ services:
31
tty: true
32
33
34
- db:
+ db:
0 commit comments