added new app: linkace (v2.4.0)
This commit is contained in:
parent
29cc0db4e2
commit
d2bbe48ad9
3 changed files with 175 additions and 0 deletions
37
apps/linkace/docker-compose.json
Normal file
37
apps/linkace/docker-compose.json
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
"services": [
|
||||
{
|
||||
"name": "linkace",
|
||||
"image": "linkace/linkace:2.4.0",
|
||||
"isMain": true,
|
||||
"internalPort": 80,
|
||||
"environment": {
|
||||
"APP_KEY": "base64:f6pz5BcY1ITOy0xkcO+8NrtaGXlZqFAX2YmZmgxkoFA=",
|
||||
"DB_CONNECTION": "sqlite"
|
||||
},
|
||||
"volumes": [
|
||||
{
|
||||
"hostPath": "${APP_DATA_DIR}/data/database",
|
||||
"containerPath": "/app/database/",
|
||||
"readOnly": false,
|
||||
"shared": false,
|
||||
"private": false
|
||||
}
|
||||
],
|
||||
"dependsOn": {
|
||||
"valkey": {
|
||||
"condition": "service_started"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "valkey",
|
||||
"image": "valkey/valkey:alpine",
|
||||
"healthCheck": {
|
||||
"test": "CMD valkey-cli ping",
|
||||
"interval": "20s",
|
||||
"timeout": "3s"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue