9 lines
304 B
Bash
Executable File
9 lines
304 B
Bash
Executable File
#!/bin/bash
|
|
DIR=$(pwd)
|
|
# Apply updated EXPORT_SERVERS
|
|
cd /home/joey/homelab/jafner-net/config/monitoring && docker-compose up -d --force-recreate exporter-minecraft
|
|
|
|
# Apply updated router mappings
|
|
cd /home/joey/homelab/jafner-net/config/minecraft && docker-compose up -d --force-recreate router
|
|
|
|
cd $DIR |