Skip to content

Run for quick setup of a working environment for either personal or work

Notifications You must be signed in to change notification settings

bengooch7/provisioner

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Provisioner

This repo contains an Ansible provisioner to setup my personal development environment. Since I typically use Ubuntu or PopOS, this is designed for Debian-based distributions.

Running

To run the provisioner, execute one of the following commands:

Method Command
wget sudo bash -c "$(wget https://raw.githubusercontent.com/bengooch7/provisioner/main/provision.sh -O -)"
curl sudo bash -c "$(curl -fsSL https://raw.github.com/bengooch7/provisioner/main/provision.sh)"

NOTE: For running with docker, see the Testing section.

Testing

The Dockerfile is only used to automate testing without wrecking my personal workstation.

To manually build the docker image, run the following command from the repo's root directory:

docker build -t test-env .

Once the test environment is built, you can run the container interactively with bash using:

docker run -it test-env bash

To remove the test-env image, run:

docker rmi test-env --force

To speed up testing, the build-and-run.sh builds and then runs the docker container interactively using the same commands as above, chained together. rm-test-env.sh will remove the test environment.

About

Run for quick setup of a working environment for either personal or work

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 86.5%
  • Dockerfile 10.0%
  • Makefile 3.5%