{ "schemaVersion": 2, "services": [ { "name": "wallabag", "image": "wallabag/wallabag:2.6.14", "isMain": true, "environment": { "SYMFONY__ENV__DATABASE_DRIVER": "pdo_sqlite", "SYMFONY__ENV__MAILER_DSN": "smtp://127.0.0.1", "SYMFONY__ENV__FROM_EMAIL": "noreply@bitspeicher.de", "SYMFONY__ENV__DOMAIN_NAME": "${APP_PROTOCOL}://${APP_DOMAIN}", "SYMFONY__ENV__SERVER_NAME": "Wallabag" }, "internalPort": 80, "volumes": [ { "hostPath": "${APP_DATA_DIR}/data/wallabag", "containerPath": "/var/www/wallabag/web/assets/images", "readOnly": false, "shared": false, "private": false } ], "dependsOn": { "valkey": { "condition": "service_started" } } }, { "name": "valkey", "image": "valkey:alpine", "healthCheck": { "test": "CMD valkey-cli ping", "interval": "20s", "timeout": "3s" } } ] }