added new app: wallabag
This commit is contained in:
parent
2b8e2dd6b6
commit
625ab49578
5 changed files with 154 additions and 0 deletions
40
apps/wallabag/docker-compose.json
Normal file
40
apps/wallabag/docker-compose.json
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
{
|
||||
"services": [
|
||||
{
|
||||
"name": "wallabag",
|
||||
"image": "wallabag/wallabag:2.6.12",
|
||||
"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": {
|
||||
"redis": {
|
||||
"condition": "service_started"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "wallabag-redis",
|
||||
"image": "redis:alpine",
|
||||
"healthCheck": {
|
||||
"test": "CMD redis-cli ping",
|
||||
"interval": "20s",
|
||||
"timeout": "3s"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue