-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselur-compose.toml
More file actions
27 lines (21 loc) · 703 Bytes
/
selur-compose.toml
File metadata and controls
27 lines (21 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# SPDX-License-Identifier: MIT
# SPDX-FileCopyrightText: 2024 Joshua Jewell
#
# Stapeln selur-compose.toml — Zerostep (VAE Dataset Normalizer)
# CLI tool: Rust binary with /data volume mount
[project]
name = "zerostep"
[services.app]
build = { context = ".", dockerfile = "Containerfile" }
restart = "no"
networks = ["default"]
volumes = [
"./data:/data:Z",
]
healthcheck = { test = "/app/vae-normalizer --version", interval = "30s", timeout = "5s", start_period = "5s", retries = 3 }
[services.app.labels]
"org.opencontainers.image.title" = "VAE Dataset Normalizer"
"org.opencontainers.image.version" = "1.0.0"
"org.opencontainers.image.licenses" = "MIT"
[networks.default]
driver = "bridge"