Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gandro/proteus-deployments


https://github.com/gandro/proteus-deployments

Last synced: 27 days ago
JSON representation

Awesome Lists containing this project

README

        

# Docker Compose files for `proteus` server

These are mounted in `/var/mnt/data/Deployments` and started via the following
systemd service unit (`/etc/systemd/system/[email protected]`):

```ini
[Unit]
Description=%i service with docker compose
Requires=docker.service
After=docker.service

[Service]
Type=oneshot
RemainAfterExit=true
WorkingDirectory=/var/mnt/data/Deployments/%i
ExecStart=/usr/bin/docker compose up -d --remove-orphans
ExecStop=/usr/bin/docker compose down
TimeoutStartSec=5m

[Install]
WantedBy=multi-user.target
```