Added files needed to deploy twenty on podman using podman-compose. --------- Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
16 lines
358 B
Desktop File
16 lines
358 B
Desktop File
[Unit]
|
|
Description=TwentyCRM Container Stack via Podman-Compose
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
WorkingDirectory=/opt/apps/twenty
|
|
EnvironmentFile=/opt/apps/twenty/.env
|
|
ExecStart=/usr/bin/podman-compose -f podman-compose.yml up -d
|
|
ExecStop=/usr/bin/podman-compose -f podman-compose.yml down
|
|
RemainAfterExit=yes
|
|
|
|
[Install]
|
|
WantedBy=default.target
|
|
|