mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 16:41:43 +05:30
feat(install): Script to automate application installation
- Install all required applications to setup a personal machine with just a single command - TODO: Some applications, available only with ppa aren't yet configured to be installed. Next time.
This commit is contained in:
11
scripts/docker-test.sh
Executable file
11
scripts/docker-test.sh
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
|
||||
# script to build and run docker
|
||||
|
||||
main() {
|
||||
docker container prune -f && echo "Removed old Docker containers"
|
||||
docker build -f ../Dockerfile -t dotfile-install-test:latest .. && echo "Docker build success"
|
||||
docker run -it dotfile-install-test:latest
|
||||
}
|
||||
|
||||
main "$@"
|
||||
Reference in New Issue
Block a user