Skip to content
Snippets Groups Projects
Commit 08702f3e authored by Robbie Luijben's avatar Robbie Luijben
Browse files

Stick to default port

parent 60a8cf09
No related branches found
No related tags found
1 merge request!326bugfix, didn't consider rfi_percent = 0 a valid RFI
Pipeline #64083 failed
...@@ -28,7 +28,6 @@ test-code: ...@@ -28,7 +28,6 @@ test-code:
POSTGRES_DB: atdb_ldv_ci POSTGRES_DB: atdb_ldv_ci
POSTGRES_USER: atdb_admin_ci POSTGRES_USER: atdb_admin_ci
POSTGRES_PASSWORD: "atdb123_ci" POSTGRES_PASSWORD: "atdb123_ci"
POSTGRES_PORT: 5555
script: script:
- cd atdb - cd atdb
- pip install -r requirements/dev.txt - pip install -r requirements/dev.txt
......
...@@ -8,6 +8,6 @@ DATABASES = { ...@@ -8,6 +8,6 @@ DATABASES = {
'PASSWORD': 'atdb123_ci', 'PASSWORD': 'atdb123_ci',
'NAME': 'atdb_ldv_ci', 'NAME': 'atdb_ldv_ci',
'HOST': 'localhost', 'HOST': 'localhost',
'PORT': '5555', 'PORT': '5432',
}, },
} }
\ No newline at end of file
...@@ -7,7 +7,7 @@ services: ...@@ -7,7 +7,7 @@ services:
expose: expose:
- "5432" - "5432"
ports: ports:
- "5555:5432" - "5432:5432"
environment: environment:
POSTGRES_PASSWORD: atdb123_ci POSTGRES_PASSWORD: atdb123_ci
POSTGRES_USER: atdb_admin_ci POSTGRES_USER: atdb_admin_ci
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment