3 lines
246 B
Bash
Executable File
3 lines
246 B
Bash
Executable File
#!/bin/sh
|
|
cd "${0%/*}" # set current directory of this script to where the script is located. necessary for podman "-v" bind mounts to be relative paths
|
|
podman run -d --name sakal-nats -p 4222:4222 -p 4223:4223 localhost/sakal-nats-server:latest |