Skip to content

Commit

Permalink
PHP update to 8.3.11 with latest service docker images (#84)
Browse files Browse the repository at this point in the history
* PHP update to 8.3.11 with latest service docker images

* Fix elasticsearch version
  • Loading branch information
stankolubomir authored Sep 26, 2024
1 parent c750984 commit 0b22c59
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
matrix:
include:
- php-version: 8.3
docker-image: anzusystems/php:3.3.0-php83-cli-vipsffmpeg
docker-image: anzusystems/php:3.4.0-php83-cli-vipsffmpeg

services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.10.2
image: docker.elastic.co/elasticsearch/elasticsearch:8.15.0
ports:
- 9200:9200
env:
Expand All @@ -31,14 +31,14 @@ jobs:
MYSQL_ROOT_PASSWORD: admin
MYSQL_DATABASE: commonbundle
mongo:
image: mongo:6.0
image: mongo:7.0
ports:
- 27017:27017
env:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: admin
redis:
image: redis:6.2
image: redis:7.2
ports:
- 6379:6379

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM anzusystems/php:3.3.0-php83-cli-vipsffmpeg
FROM anzusystems/php:3.4.0-php83-cli-vipsffmpeg
#
### Basic arguments and variables
ARG DOCKER_USER_ID
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
hostname: core-dam-bundle

elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.10.2
image: docker.elastic.co/elasticsearch/elasticsearch:8.15.0
environment:
- cluster.routing.allocation.disk.threshold_enabled=false
- discovery.type=single-node
Expand All @@ -32,7 +32,7 @@ services:
hostname: elasticsearch

mongo:
image: mongo:6.0
image: mongo:7.0
command: --logappend ${MONGO_NOTABLESCAN:-}
env_file:
- .env.docker.dist
Expand All @@ -58,7 +58,7 @@ services:
hostname: mysql

redis:
image: redis:6.2
image: redis:7.2
volumes:
- redis_data:/data:cached
ports:
Expand Down

0 comments on commit 0b22c59

Please sign in to comment.