diff --git a/apps/flightlog/config.json b/apps/flightlog/config.json index 0924664d4b..d17fe5498f 100644 --- a/apps/flightlog/config.json +++ b/apps/flightlog/config.json @@ -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", @@ -15,5 +16,5 @@ "form_fields": [], "supported_architectures": ["arm64", "amd64"], "created_at": 1691943801422, - "updated_at": 1725836550000 + "updated_at": 1734113812356 } diff --git a/apps/flightlog/docker-compose.json b/apps/flightlog/docker-compose.json new file mode 100644 index 0000000000..197a0a7e86 --- /dev/null +++ b/apps/flightlog/docker-compose.json @@ -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" + } + ] + } + ] +}