Skip to content

Commit f923f8d

Browse files
authored
[Docker] Adjust configuration for Sylius 2.0 (#1093)
2 parents 857170c + 33fef79 commit f923f8d

File tree

3 files changed

+6
-175
lines changed

3 files changed

+6
-175
lines changed

Dockerfile

-171
This file was deleted.

compose.override.dist.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
php:
3-
image: ghcr.io/sylius/sylius-php:8.2-fixuid-xdebug-alpine
3+
image: ghcr.io/sylius/sylius-php:8.3-fixuid-xdebug-alpine
44
user: ${DOCKER_USER:-1000:1000}
55
depends_on:
66
mysql:
@@ -16,6 +16,8 @@ services:
1616
SYLIUS_MESSENGER_TRANSPORT_MAIN_FAILED_DSN: doctrine://default?queue_name=main_failed
1717
SYLIUS_MESSENGER_TRANSPORT_CATALOG_PROMOTION_REMOVAL_DSN: doctrine://default?queue_name=catalog_promotion_removal
1818
SYLIUS_MESSENGER_TRANSPORT_CATALOG_PROMOTION_REMOVAL_FAILED_DSN: doctrine://default?queue_name=catalog_promotion_removal_failed
19+
SYLIUS_MESSENGER_TRANSPORT_PAYMENT_REQUEST_DSN: sync://
20+
SYLIUS_MESSENGER_TRANSPORT_PAYMENT_REQUEST_FAILED_DSN: sync://
1921
PHP_DATE_TIMEZONE: ${PHP_DATE_TIMEZONE:-UTC}
2022
XDEBUG_MODE: debug
2123
XDEBUG_CONFIG: >-
@@ -49,7 +51,7 @@ services:
4951
ports:
5052
- "80:80"
5153
nodejs:
52-
image: node:${NODE_VERSION:-20}-alpine
54+
image: node:${NODE_VERSION:-22}-alpine
5355
user: ${DOCKER_USER:-1000:1000}
5456
working_dir: /srv/sylius
5557
entrypoint: [ "/bin/sh","-c" ]

compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
services:
22
php:
3-
image: ghcr.io/sylius/sylius-php:8.2-alpine
3+
image: ghcr.io/sylius/sylius-php:8.3-alpine
44
mysql:
5-
image: mysql:8.0
5+
image: mysql:8.4
66
platform: linux/amd64
77
healthcheck:
88
test: '/usr/bin/mysql --execute "SHOW databases;"'

0 commit comments

Comments
 (0)