ci: remove unnecessary container names in workflow config
All checks were successful
Playwright Tests / test (pull_request) Successful in 1m51s
All checks were successful
Playwright Tests / test (pull_request) Successful in 1m51s
This commit is contained in:
parent
9e70e2a090
commit
c29ae4ef18
1 changed files with 0 additions and 4 deletions
4
.github/workflows/playwright.yml
vendored
4
.github/workflows/playwright.yml
vendored
|
@ -12,7 +12,6 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
services:
|
services:
|
||||||
postgres-employee:
|
postgres-employee:
|
||||||
container_name: postgres_employee
|
|
||||||
image: postgres:13.3
|
image: postgres:13.3
|
||||||
env:
|
env:
|
||||||
POSTGRES_DB: employee_db
|
POSTGRES_DB: employee_db
|
||||||
|
@ -20,15 +19,12 @@ jobs:
|
||||||
POSTGRES_PASSWORD: secret
|
POSTGRES_PASSWORD: secret
|
||||||
|
|
||||||
employee:
|
employee:
|
||||||
container_name: employee
|
|
||||||
image: berndheidemann/employee-management-service:1.1.3
|
image: berndheidemann/employee-management-service:1.1.3
|
||||||
# image: berndheidemann/employee-management-service_without_keycloak:1.1
|
# image: berndheidemann/employee-management-service_without_keycloak:1.1
|
||||||
env:
|
env:
|
||||||
spring.datasource.url: jdbc:postgresql://postgres-employee:5432/employee_db
|
spring.datasource.url: jdbc:postgresql://postgres-employee:5432/employee_db
|
||||||
spring.datasource.username: employee
|
spring.datasource.username: employee
|
||||||
spring.datasource.password: secret
|
spring.datasource.password: secret
|
||||||
depends_on:
|
|
||||||
- postgres-employee
|
|
||||||
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
Loading…
Add table
Reference in a new issue