mirror of
https://github.com/runyanjake/olomana.git
synced 2025-10-04 13:27:28 -07:00
20 lines
446 B
Bash
Executable File
20 lines
446 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# List of container paths to start
|
|
declare -a CONTAINERS=(
|
|
"home/homeassistant"
|
|
"media/immich"
|
|
"media/plex"
|
|
"media/transmission"
|
|
"misc/homepage"
|
|
"productivity/code-server"
|
|
"productivity/planka"
|
|
"software/workflow/n8n"
|
|
"software-development/gitea"
|
|
"software-development/grafana"
|
|
"software-development/traefik"
|
|
)
|
|
|
|
# Start all containers in one call to start-containers.sh
|
|
./start-containers.sh "${CONTAINERS[@]}"
|