Skip to content

Commit

Permalink
Add dynamic compose for flightlog (#6052)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lancelot-Enguerrand authored Dec 21, 2024
1 parent cc341b9 commit e7592cb
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
5 changes: 3 additions & 2 deletions apps/flightlog/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
"name": "Flightlog",
"available": true,
"exposable": true,
"dynamic_config": true,
"port": 8934,
"id": "flightlog",
"tipi_version": 3,
"tipi_version": 4,
"version": "2.1.1",
"categories": ["utilities", "data"],
"description": "Easily keep track of your flight history",
Expand All @@ -15,5 +16,5 @@
"form_fields": [],
"supported_architectures": ["arm64", "amd64"],
"created_at": 1691943801422,
"updated_at": 1725836550000
"updated_at": 1734113812356
}
19 changes: 19 additions & 0 deletions apps/flightlog/docker-compose.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"services": [
{
"name": "flightlog",
"image": "perdian/flightlog:v2.1.1",
"isMain": true,
"internalPort": 8080,
"environment": {
"FLIGHTLOG_SERVER_CONTEXT_PATH": "/"
},
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data/db",
"containerPath": "/var/flightlog/database"
}
]
}
]
}

0 comments on commit e7592cb

Please sign in to comment.