Skip to content

Commit

Permalink
feat: adds docker compose daemon (#73)
Browse files Browse the repository at this point in the history
* release: dotfiles v1.3.0 (#72)

* chore: updates files to be consistent with the new bash-src (#64)

* chore: updates files to be consistent with the new bash-src

* chore: Update files to be consistent with the new bash-src

* docs: Update project status in README.md (#65)

* minor update

* minor update

* automatically sets upstream (#67)

* feat: add docker profile alias (#70)

* update gacp to automatically set upstream (#68)

* chore: updates files to be consistent with the new bash-src (#64)

* chore: updates files to be consistent with the new bash-src

* chore: Update files to be consistent with the new bash-src

* docs: Update project status in README.md (#65)

* minor update

* minor update

* automatically sets upstream (#67)

* Update install

* Update install

* Update install

* Update install

* Update install

* Update install

* feat: add docker-profile alias

* WIP

* feat: add docker functions (#71)

* update gacp to automatically set upstream (#68)

* chore: updates files to be consistent with the new bash-src (#64)

* chore: updates files to be consistent with the new bash-src

* chore: Update files to be consistent with the new bash-src

* docs: Update project status in README.md (#65)

* minor update

* minor update

* automatically sets upstream (#67)

* Update install

* Update install

* Update install

* Update install

* Update install

* Update install

* feat: add docker-profile alias

* WIP

* add docker functions

* fix: escapes the dollar-sign for pwd

* feat: adds docker compose daemon
  • Loading branch information
cmbengue-ec-intl authored Jul 12, 2024
1 parent e401d8b commit 77c7858
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion install
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ source "${src_dir}/aliases"
[ -d "\${HOME}/bash-src/src" ] && export BASHSRCPATH="\${HOME}/bash-src/"
[ -d "\${HOME}/awk-src/scripts" ] && export AWKSRCPATH="\${HOME}/awk-src/"
# save the current directory
export SDIR=$(pwd)
export SDIR=\$(pwd)
# Add dotfiles bin directory to PATH
export PATH="\${HOME}/dotfiles/bin:\${PATH}"
# Add functions
Expand Down
4 changes: 4 additions & 0 deletions src/bash/functions
Original file line number Diff line number Diff line change
Expand Up @@ -232,5 +232,9 @@ dcpub() {
docker-compose --profile "$1" up --build
}

dcpud() {
docker-compose --profile "$1" up -d
}

# Run functions
make_default_directories

0 comments on commit 77c7858

Please sign in to comment.