mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 08:41:43 +05:30
- 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.
12 lines
277 B
Bash
Executable File
12 lines
277 B
Bash
Executable File
#!/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 "$@"
|