mirror of
https://github.com/PurpleComputing/scim-examples.git
synced 2026-02-11 09:34:30 +00:00
18 lines
379 B
Desktop File
18 lines
379 B
Desktop File
#/etc/systemd/system/op-scim.service
|
|
[Unit]
|
|
Description=1Password SCIM bridge
|
|
Requires=docker.service
|
|
After=docker.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
RemainAfterExit=yes
|
|
WorkingDirectory=/path/to/directory/containing/docker-compose.yml
|
|
ExecStart=/usr/local/bin/docker-compose up -d
|
|
ExecStop=/usr/local/bin/docker-compose down
|
|
TimeoutStartSec=0
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|