mirror of
https://github.com/aljazceru/pubky-docker.git
synced 2025-12-17 07:24:35 +01:00
8 lines
200 B
Bash
Executable File
8 lines
200 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Check the NETWORK environment variable and execute the appropriate command
|
|
if [ "$NETWORK" = "mainnet" ]; then
|
|
exec homeserver
|
|
else
|
|
exec homeserver --homeserver-config=/config.toml
|
|
fi |