solstice-ci/crates/orchestrator/packaging/solstice-orchestrator.service
Till Wegmueller fad8e60ec1
Add Debian packaging support and network configuration enhancements
- Introduce Debian package build script using `cargo-deb` for orchestrator releases.
- Add systemd unit file and post-installation script for automatic service setup.
- Update `compose.yml` with host-only port bindings for Postgres and RabbitMQ.
- Introduce NGINX-based log proxy for orchestrator logs with Traefik support.
- Bump orchestrator version to 0.1.1 and update related Cargo metadata for packaging.
- Add example environment file for orchestrator configuration.

Signed-off-by: Till Wegmueller <toasterson@gmail.com>
2025-11-17 19:57:19 +01:00

23 lines
483 B
Desktop File

[Unit]
Description=Solstice CI Orchestrator
After=network-online.target
Wants=network-online.target
[Service]
Type=simple
EnvironmentFile=-/etc/default/solstice-orchestrator
EnvironmentFile=-/etc/solstice/orchestrator.env
ExecStart=/usr/bin/solstice-orchestrator
Restart=on-failure
RestartSec=3s
User=solstice
Group=solstice
AmbientCapabilities=
NoNewPrivileges=yes
ProtectSystem=full
ProtectHome=true
PrivateTmp=true
RuntimeDirectory=solstice
[Install]
WantedBy=multi-user.target