add unit files
This commit is contained in:
parent
7f2eb7ec65
commit
38a2de5858
5 changed files with 142 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
||||||
[www]
|
[www]
|
||||||
|
|
||||||
user = nobody
|
user = root
|
||||||
group = nobody
|
group = root
|
||||||
listen = 9001
|
listen = 9001
|
||||||
pm = dynamic
|
pm = dynamic
|
||||||
pm.max_children = 5
|
pm.max_children = 5
|
||||||
|
@ -10,5 +10,4 @@ pm.min_spare_servers = 1
|
||||||
pm.max_spare_servers = 3
|
pm.max_spare_servers = 3
|
||||||
env[APP_ENV]=$APP_ENV
|
env[APP_ENV]=$APP_ENV
|
||||||
env[APP_SECRET]=$APP_SECRET
|
env[APP_SECRET]=$APP_SECRET
|
||||||
error_log = /var/log/php-fpm.log
|
catch_workers_output = yes
|
||||||
catch_workers_output = yes
|
|
||||||
|
|
43
deploy/systemd/container-futtern-caddy.service
Normal file
43
deploy/systemd/container-futtern-caddy.service
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
# container-futtern-caddy.service
|
||||||
|
# autogenerated by Podman 4.3.1
|
||||||
|
# Sun Jun 23 05:33:51 UTC 2024
|
||||||
|
|
||||||
|
[Unit]
|
||||||
|
Description=Podman container-futtern-caddy.service
|
||||||
|
Documentation=man:podman-generate-systemd(1)
|
||||||
|
Wants=network-online.target
|
||||||
|
After=network-online.target
|
||||||
|
RequiresMountsFor=%t/containers
|
||||||
|
BindsTo=pod-futtern.service
|
||||||
|
After=pod-futtern.service
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Environment=PODMAN_SYSTEMD_UNIT=%n
|
||||||
|
Restart=on-failure
|
||||||
|
TimeoutStopSec=70
|
||||||
|
ExecStartPre=/bin/rm \
|
||||||
|
-f %t/%n.ctr-id
|
||||||
|
ExecStart=/usr/bin/podman run \
|
||||||
|
--cidfile=%t/%n.ctr-id \
|
||||||
|
--cgroups=no-conmon \
|
||||||
|
--rm \
|
||||||
|
--pod-id-file %t/pod-futtern.pod-id \
|
||||||
|
--sdnotify=conmon \
|
||||||
|
--replace \
|
||||||
|
-d \
|
||||||
|
--name futtern-caddy \
|
||||||
|
--volume /home/c3h-futtern/etc/caddy/Caddyfile:/etc/caddy/Caddyfile \
|
||||||
|
--volume /home/c3h-futtern/futtern-app:/var/www/html \
|
||||||
|
--volume caddy_data:/data docker.io/caddy/caddy:alpine
|
||||||
|
ExecStop=/usr/bin/podman stop \
|
||||||
|
--ignore -t 10 \
|
||||||
|
--cidfile=%t/%n.ctr-id
|
||||||
|
ExecStopPost=/usr/bin/podman rm \
|
||||||
|
-f \
|
||||||
|
--ignore -t 10 \
|
||||||
|
--cidfile=%t/%n.ctr-id
|
||||||
|
Type=notify
|
||||||
|
NotifyAccess=all
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=default.target
|
46
deploy/systemd/container-futtern-php.service
Normal file
46
deploy/systemd/container-futtern-php.service
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
# container-futtern-php.service
|
||||||
|
# autogenerated by Podman 4.3.1
|
||||||
|
# Sun Jun 23 05:33:51 UTC 2024
|
||||||
|
|
||||||
|
[Unit]
|
||||||
|
Description=Podman container-futtern-php.service
|
||||||
|
Documentation=man:podman-generate-systemd(1)
|
||||||
|
Wants=network-online.target
|
||||||
|
After=network-online.target
|
||||||
|
RequiresMountsFor=%t/containers
|
||||||
|
BindsTo=pod-futtern.service
|
||||||
|
After=pod-futtern.service
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Environment=PODMAN_SYSTEMD_UNIT=%n
|
||||||
|
Restart=on-failure
|
||||||
|
TimeoutStopSec=70
|
||||||
|
ExecStartPre=/bin/rm \
|
||||||
|
-f %t/%n.ctr-id
|
||||||
|
ExecStart=/usr/bin/podman run \
|
||||||
|
--cidfile=%t/%n.ctr-id \
|
||||||
|
--cgroups=no-conmon \
|
||||||
|
--rm \
|
||||||
|
--pod-id-file %t/pod-futtern.pod-id \
|
||||||
|
--sdnotify=conmon \
|
||||||
|
--replace \
|
||||||
|
-d \
|
||||||
|
--name futtern-php \
|
||||||
|
--volume /home/c3h-futtern/etc/php83/php-fpm.d/www.conf:/etc/php83/php-fpm.d/www.conf \
|
||||||
|
--volume /home/c3h-futtern/futtern-app:/var/www/html \
|
||||||
|
--volume /home/c3h-futtern/var:/var/www/html/var \
|
||||||
|
--env APP_ENV=prod \
|
||||||
|
--env APP_SECRET=UwUtHiSisNotSecurePlZcHanGeMe \
|
||||||
|
git.php.fail/lubiana/container/php:8.3-fpm
|
||||||
|
ExecStop=/usr/bin/podman stop \
|
||||||
|
--ignore -t 10 \
|
||||||
|
--cidfile=%t/%n.ctr-id
|
||||||
|
ExecStopPost=/usr/bin/podman rm \
|
||||||
|
-f \
|
||||||
|
--ignore -t 10 \
|
||||||
|
--cidfile=%t/%n.ctr-id
|
||||||
|
Type=notify
|
||||||
|
NotifyAccess=all
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=default.target
|
42
deploy/systemd/pod-futtern.service
Normal file
42
deploy/systemd/pod-futtern.service
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
# pod-futtern.service
|
||||||
|
# autogenerated by Podman 4.3.1
|
||||||
|
# Sun Jun 23 05:33:51 UTC 2024
|
||||||
|
|
||||||
|
[Unit]
|
||||||
|
Description=Podman pod-futtern.service
|
||||||
|
Documentation=man:podman-generate-systemd(1)
|
||||||
|
Wants=network-online.target
|
||||||
|
After=network-online.target
|
||||||
|
RequiresMountsFor=/run/user/1006/containers
|
||||||
|
Wants=container-futtern-caddy.service container-futtern-php.service
|
||||||
|
Before=container-futtern-caddy.service container-futtern-php.service
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Environment=PODMAN_SYSTEMD_UNIT=%n
|
||||||
|
Restart=on-failure
|
||||||
|
TimeoutStopSec=70
|
||||||
|
ExecStartPre=/bin/rm \
|
||||||
|
-f %t/pod-futtern.pid %t/pod-futtern.pod-id
|
||||||
|
ExecStartPre=/usr/bin/podman pod create \
|
||||||
|
--infra-conmon-pidfile %t/pod-futtern.pid \
|
||||||
|
--pod-id-file %t/pod-futtern.pod-id \
|
||||||
|
--exit-policy=stop \
|
||||||
|
--label io.containers.autoupdate=registry \
|
||||||
|
--name futtern \
|
||||||
|
-p 8087:8087 \
|
||||||
|
--replace
|
||||||
|
ExecStart=/usr/bin/podman pod start \
|
||||||
|
--pod-id-file %t/pod-futtern.pod-id
|
||||||
|
ExecStop=/usr/bin/podman pod stop \
|
||||||
|
--ignore \
|
||||||
|
--pod-id-file %t/pod-futtern.pod-id \
|
||||||
|
-t 10
|
||||||
|
ExecStopPost=/usr/bin/podman pod rm \
|
||||||
|
--ignore \
|
||||||
|
-f \
|
||||||
|
--pod-id-file %t/pod-futtern.pod-id
|
||||||
|
PIDFile=%t/pod-futtern.pid
|
||||||
|
Type=forking
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=default.target
|
8
deploy/update.sh
Normal file
8
deploy/update.sh
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
|
systemctl --user stop pod-futtern
|
||||||
|
systemctl --user start pod-futtern
|
||||||
|
sleep 2
|
||||||
|
podman exec -it futtern-php /var/www/html/bin/console cache:clear
|
||||||
|
podman exec -it futtern-php /var/www/html/bin/console cache:warmup
|
||||||
|
echo 'yes' | podman exec -it futtern-php /var/www/html/bin/console doctrine:migrations:migrate
|
Loading…
Reference in a new issue