Skip to content

Setting up Podman on server in local network to connect with #731

Answered by marhkb
HappiePlant asked this question in Q&A
Discussion options

You must be logged in to vote

this wonderful app

Thank you!

no clue what port number

You can use any port that's available and to that you connect through your local network.

On your mini server, you can for example run

podman system service --time=0 tcp://0.0.0.0:37017

With pods you can then connect

You should also probably create and enable a systemd unit to start the podman service automatically

[Unit]
Description=Podman TCP socket
After=network.target
StartLimitIntervalSec=0

[Service]
Type=simple
Restart=always
RestartSec=1
ExecStart=/usr/bin/podman system service --time=0 tcp://0.0.0.0:37017

[Install]
WantedBy=multi-user.target

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@HappiePlant
Comment options

Answer selected by HappiePlant
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants