feat(filters): add filters for the main page
This commit is contained in:
@@ -14,6 +14,12 @@ services:
|
||||
resources:
|
||||
limits:
|
||||
memory: 512M
|
||||
healthcheck:
|
||||
test: [ "CMD", "curl" ,"-f", "http://localhost/index.php?route=extension/tgshop/handle&api_action=health" ]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
start_period: 5s
|
||||
environment:
|
||||
- WEB_DOCUMENT_ROOT=/web/upload
|
||||
- PHP_DISPLAY_ERRORS=1
|
||||
@@ -25,6 +31,8 @@ services:
|
||||
- PHP_IDE_CONFIG=serverName=orbstack
|
||||
- php.session.gc_maxlifetime=28800
|
||||
- php.session.cookie_lifetime=0
|
||||
depends_on:
|
||||
- mysql
|
||||
|
||||
mysql:
|
||||
image: mariadb:10.2.7
|
||||
@@ -34,7 +42,7 @@ services:
|
||||
- MYSQL_ROOT_PASSWORD=secret
|
||||
- MYSQL_DATABASE=ocstore3
|
||||
healthcheck:
|
||||
test: ["CMD", "mysqladmin" ,"ping", "-h", "localhost"]
|
||||
test: [ "CMD", "mysqladmin" ,"ping", "-h", "localhost", "-u", "root", "-psecret" ]
|
||||
timeout: 20s
|
||||
retries: 10
|
||||
ports:
|
||||
|
||||
Reference in New Issue
Block a user