mirror of
https://github.com/matter-labs/teepot.git
synced 2025-07-21 15:13:56 +02:00
feat(tdx-google): enhance container service setup
- Add `vector.service` and `chronyd.service` dependencies to `docker_start_container` service. - Use `EnvironmentFile` and a pre-start script to dynamically generate environment variables for container setup. - Improve error handling and clarity in container initialization.
This commit is contained in:
parent
908579cd60
commit
a41460b7f0
3 changed files with 50 additions and 28 deletions
|
@ -46,7 +46,8 @@ enum AppError {
|
|||
|
||||
#[tokio::main]
|
||||
async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
|
||||
let config = load_config_with_telemetry(|config: &AppConfig| &config.telemetry).await?;
|
||||
let config =
|
||||
load_config_with_telemetry("APP".into(), |config: &AppConfig| &config.telemetry).await?;
|
||||
|
||||
loop {
|
||||
error!(?config, "error test!");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue