mirror of
https://github.com/runyanjake/olomana.git
synced 2026-06-25 08:04:52 -07:00
20 lines
560 B
Bash
Executable File
20 lines
560 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# List of container paths to start
|
|
declare -a CONTAINERS=(
|
|
"media/immich"
|
|
"media/plex"
|
|
"media/transmission"
|
|
"misc/homepage"
|
|
"smarthome/homeassistant"
|
|
"software-development/design/excalidraw"
|
|
"software-development/documentation/code-server"
|
|
"software-development/infrastructure/gitea"
|
|
"software-development/infrastructure/grafana"
|
|
"software-development/infrastructure/traefik"
|
|
"software-development/project-management/plane"
|
|
)
|
|
|
|
# Start all containers in one call to start-containers.sh
|
|
./start-containers.sh "${CONTAINERS[@]}"
|