fix port envs?

This commit is contained in:
Matthias 2021-12-02 14:15:13 +01:00
parent b99d5a28e9
commit 0f4991db0a
No known key found for this signature in database
GPG Key ID: F50EF5741D33E076

View File

@ -225,7 +225,7 @@ jobs:
postgres:
image: postgres
ports:
- ${{ env.INVENTREE_DB_PORT }}:${{ env.INVENTREE_DB_PORT }}
- 5432:5432
redis:
image: redis
@ -278,7 +278,7 @@ jobs:
MYSQL_ROOT_PASSWORD: ${{ env.INVENTREE_DB_PASSWORD }}
options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3
ports:
- ${{ env.INVENTREE_DB_PORT }}:${{ env.INVENTREE_DB_PORT }}
- 3306:3306
steps:
- name: Checkout Code