diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 2be9c71..7f0c303 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -38,6 +38,8 @@ jobs: DB_URL=${{ secrets.DB_URL }} DB_USERNAME=${{ secrets.DB_USERNAME }} DB_PASSWORD=${{ secrets.DB_PASSWORD }} + REDIS_URL=${{ secrets.REDIS_URL }} + REDIS_PORT=${{ secrets.REDIS_PORT }} tags: | eatda/api-server:latest diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 09f4b12..f731279 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -72,6 +72,7 @@ spring: data: redis: host: ${REDIS_URL} + port: ${REDIS_PORT} jooq: sql-dialect: postgres