added new app: jotty (1.10.4)
This commit is contained in:
parent
c86b0a41fd
commit
003f0ce1be
5 changed files with 442 additions and 0 deletions
41
apps/jotty/docker-compose.json
Normal file
41
apps/jotty/docker-compose.json
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"schemaVersion": 2,
|
||||
"services": [
|
||||
{
|
||||
"name": "jotty",
|
||||
"image": "ghcr.io/fccview/jotty:1.10.2",
|
||||
"isMain": true,
|
||||
"environment": [
|
||||
{
|
||||
"key": "NODE_ENV",
|
||||
"value": "production"
|
||||
}
|
||||
],
|
||||
"internalPort": 3000,
|
||||
"volumes": [
|
||||
{
|
||||
"hostPath": "${APP_DATA_DIR}/data/data",
|
||||
"containerPath": "/app/data",
|
||||
"readOnly": false,
|
||||
"shared": false,
|
||||
"private": false
|
||||
},
|
||||
{
|
||||
"hostPath": "${APP_DATA_DIR}/data/config",
|
||||
"containerPath": "/app/config",
|
||||
"readOnly": false,
|
||||
"shared": false,
|
||||
"private": false
|
||||
},
|
||||
{
|
||||
"hostPath": "${APP_DATA_DIR}/data/cache",
|
||||
"containerPath": "/app/.next/cache",
|
||||
"readOnly": false,
|
||||
"shared": false,
|
||||
"private": false
|
||||
}
|
||||
],
|
||||
"user": "1000:1000"
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue