Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/run-tests-with-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

services:
postgres:
image: postgres
image: postgres:17.4
env:
POSTGRES_PASSWORD: ""
POSTGRES_USER: forge
Expand All @@ -35,7 +35,7 @@ jobs:
--health-timeout 5s
--health-retries 5
redis:
image: redis:7.2
image: redis:7.4
env:
ALLOW_EMPTY_PASSWORD: "yes"
ports:
Expand All @@ -49,7 +49,7 @@ jobs:
steps:
- uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
php-version: '8.4'
extensions: pgsql
- uses: actions/checkout@v3
- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM webdevops/php-nginx:8.3-alpine
FROM webdevops/php-nginx:8.4-alpine

ENV WEB_DOCUMENT_ROOT /app/public
ENV WEB_DOCUMENT_INDEX index.php
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:

nginx:
image: ghcr.io/ronasit/php-nginx-dev:8.3
image: ghcr.io/ronasit/php-nginx-dev:8.4
working_dir: /app
command: >
bash -c "chmod +x ./docker/entrypoint.sh && ./docker/entrypoint.sh && cd /opt/docker && supervisord"
Expand Down Expand Up @@ -50,7 +50,7 @@ services:
- 6379:6379

php:
image: webdevops/php:8.3-alpine
image: webdevops/php:8.4-alpine
working_dir: /app
volumes:
- ./:/app