Skip to content

Commit 74e9843

Browse files
hyperpolymathclaude
andcommitted
chore: add Stapeln selur-compose.toml service definition
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 595166c commit 74e9843

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

selur-compose.toml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# SPDX-License-Identifier: MIT
2+
# SPDX-FileCopyrightText: 2024 Joshua Jewell
3+
#
4+
# Stapeln selur-compose.toml — Zerostep (VAE Dataset Normalizer)
5+
# CLI tool: Rust binary with /data volume mount
6+
7+
[project]
8+
name = "zerostep"
9+
10+
[services.app]
11+
build = { context = ".", dockerfile = "Containerfile" }
12+
restart = "no"
13+
networks = ["default"]
14+
15+
volumes = [
16+
"./data:/data:Z",
17+
]
18+
19+
healthcheck = { test = "/app/vae-normalizer --version", interval = "30s", timeout = "5s", start_period = "5s", retries = 3 }
20+
21+
[services.app.labels]
22+
"org.opencontainers.image.title" = "VAE Dataset Normalizer"
23+
"org.opencontainers.image.version" = "1.0.0"
24+
"org.opencontainers.image.licenses" = "MIT"
25+
26+
[networks.default]
27+
driver = "bridge"

0 commit comments

Comments
 (0)