Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Create a systemd service for the container.

  2. Generate a new systemd service for the port90 proxy container.

    Code Block
    podman generate systemd --new --name swarm-port90-console > /etcusr/lib/systemd/system/swarm-port90-console.service
  3. Stop the port90 proxy container.

    Code Block
    podman stop swarm-port90-console
  4. Enable port90 proxy container to auto-start on reboot and start it up again.

    Code Block
    systemctl enable swarm-port90-console.service
    systemctl start swarm-port90-console.service
  5. Now the port90 proxy container is running as a system service, with podman and systemd.

    Code Block
    systemctl status swarm-port90-console.service

...