diff --git a/freshrss/log/logrotate.status b/freshrss/log/logrotate.status index 6c06514..fcbebe1 100644 --- a/freshrss/log/logrotate.status +++ b/freshrss/log/logrotate.status @@ -1,6 +1,6 @@ logrotate state -- version 2 "/var/log/acpid.log" 2026-1-19-2:0:0 -"/config/log/nginx/access.log" 2026-5-24-2:0:0 +"/config/log/nginx/access.log" 2026-5-31-2:0:0 "/var/log/php84/*.log" 2026-1-19-2:0:0 "/config/log/nginx/error.log" 2026-1-19-2:0:0 -"/config/log/php/error.log" 2026-5-24-2:0:0 +"/config/log/php/error.log" 2026-5-31-2:0:0 diff --git a/portainer_agent/create_network.sh b/portainer_agent/create_network.sh new file mode 100755 index 0000000..998d3a1 --- /dev/null +++ b/portainer_agent/create_network.sh @@ -0,0 +1,5 @@ +# Only run this to create the overlay network for the Portainer Agent if it doesn't already exist + +docker network create \ +--driver overlay \ + portainer_agent_network diff --git a/portainer_agent/run.sh b/portainer_agent/run.sh index c7eaa88..c1c6255 100755 --- a/portainer_agent/run.sh +++ b/portainer_agent/run.sh @@ -1,9 +1,5 @@ # Setup the Portainer Agent on a Docker Swarm cluster -docker network create \ ---driver overlay \ - portainer_agent_network - docker service create \ --name portainer_agent \ --network portainer_agent_network \ diff --git a/portainer_agent/stop.sh b/portainer_agent/stop.sh new file mode 100755 index 0000000..226ef55 --- /dev/null +++ b/portainer_agent/stop.sh @@ -0,0 +1,3 @@ +# Stop and remove the Portainer Agent service + +docker service rm portainer_agent