mirror of
https://github.com/kingomarnajjar/desktop-environment.git
synced 2026-07-31 02:26:44 +10:00
16 lines
366 B
Bash
Executable file
16 lines
366 B
Bash
Executable file
REPO_ROOT=$(dirname $(realpath $0))/../..
|
|
|
|
# Export desktop environment shell configuration
|
|
export $($REPO_ROOT/docker/scripts/environment.sh)
|
|
|
|
docker run \
|
|
--interactive \
|
|
--rm \
|
|
--tty \
|
|
--volume $PWD:$PWD \
|
|
--workdir $PWD \
|
|
hashicorp/terraform:light apply \
|
|
-auto-approve \
|
|
-var owner_host=$(hostname) \
|
|
-var owner_name=$(whoami) \
|
|
-lock=false
|