Skip to content

Commit ef120ed

Browse files
committed
NEXT-0000 - Fix used docker images
1 parent f9c2d35 commit ef120ed

File tree

3 files changed

+25
-9
lines changed

3 files changed

+25
-9
lines changed

.devcontainer/compose.yml

+19-5
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,33 @@
11
services:
22
editor:
3-
image: ghcr.io/shopwarelabs/devcontainer/base-slim:8.2@sha256:1c67f419cd08700a8bf8d58439fc06a7087a7879489d0b20f676f7899b554aeb
3+
image: ghcr.io/shopwarelabs/devcontainer/base-slim:8.3
44
db:
5-
image: chainguard/mariadb
5+
image: mariadb:latest
6+
network_mode: 'service:editor'
67
environment:
78
MARIADB_ROOT_PASSWORD: root
89
MARIADB_DATABASE: shopware
10+
command:
11+
- --sql_mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION
12+
- --log_bin_trust_function_creators=1
13+
- --binlog_cache_size=16M
14+
- --key_buffer_size=0
15+
- --join_buffer_size=1024M
16+
- --innodb_log_file_size=128M
17+
- --innodb_buffer_pool_size=1024M
18+
- --innodb_buffer_pool_instances=1
19+
- --group_concat_max_len=320000
20+
- --default-time-zone=+00:00
21+
- --max_binlog_size=512M
22+
- --binlog_expire_logs_seconds=86400
923
volumes:
1024
- db-data:/var/lib/mysql
1125
smtp:
1226
image: axllent/mailpit
13-
ports:
14-
- 8025:8025
27+
network_mode: 'service:editor'
1528
redis:
16-
image: chainguard/valkey
29+
image: valkey/valkey:alpine
30+
network_mode: 'service:editor'
1731

1832
volumes:
1933
db-data:

.devcontainer/devcontainer.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@
1919
"terminal.integrated.defaultProfile.linux": "bash"
2020
},
2121
"extensions": [
22-
"DEVSENSE.phptools-vscode"
22+
"DEVSENSE.phptools-vscode",
23+
"redhat.vscode-yaml",
24+
"redhat.vscode-xml"
2325
]
2426
}
2527
}

compose.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
database:
3-
image: chainguard/mariadb:latest
3+
image: mariadb:latest
44
environment:
55
MARIADB_ROOT_PASSWORD: root
66
MARIADB_DATABASE: shopware
@@ -32,7 +32,7 @@ services:
3232
- '9080:8080'
3333

3434
valkey:
35-
image: chainguard/valkey
35+
image: valkey/valkey:alpine
3636
command: [ "--maxmemory-policy", "volatile-lfu" ]
3737
ports:
3838
- '6379:6379'
@@ -44,7 +44,7 @@ services:
4444
- '1025:1025'
4545

4646
opensearch:
47-
image: chainguard/opensearch:latest
47+
image: opensearchproject/opensearch:latest
4848
ports:
4949
- '9200:9200'
5050
environment:

0 commit comments

Comments
 (0)