DockSTARTer App Configurator

The main goal of DockSTARTer App Configurator (aka DSAC) is to make it quick and easy to get you running with some basic configurations.

You may choose to rely on DSAC for various changes to your Docker system, or use it as a stepping stone and learn to do more advanced configurations and connecting applications together.

Getting Started

System Requirements

TL;DR:

  • You must be running a Supported platform or an operating system based on a supported platform. Platforms named below will link to documentation listing compatible versions.
  • You must be logged in as a non-root user with sudo permissions.

One Time Setup (required)

sudo apt-get install curl git
bash -c "$(curl -fsSL https://ghostwriters.github.io/DSAC/main.sh)"
sudo reboot

Raspbian requires a few extra commands

sudo apt-get update
sudo apt-get dist-upgrade
sudo apt-get install curl git
bash -c "$(curl -fsSL https://get.docker.com)"
bash -c "$(curl -fsSL https://ghostwriters.github.io/DSAC/main.sh)"
sudo reboot
sudo dnf install curl git
bash -c "$(curl -fsSL https://ghostwriters.github.io/DSAC/main.sh)"
sudo reboot
sudo yum install curl git
bash -c "$(curl -fsSL https://ghostwriters.github.io/DSAC/main.sh)"
sudo reboot
Alternate install (any system) The standard install above downloads the initial script using a method with some known risks. For those concerned with the security of the above method here is an alternative:
## NOTE: Run the appropriate command for your distro
sudo apt-get install curl git
sudo dnf install curl git
sudo yum install curl git

## NOTE: Do not sudo the next line.
git clone https://github.com/GhostWriters/DSAC.git "/home/${USER}/.dsac"
sudo bash /home/${USER}/.dsac/main.sh -vi
sudo reboot

Running DSAC

sudo dsac

To run DSAC use the command above. You should now see the main menu.

See our documentation for more detailed information.

Support

Discord chat

Click the chat badge to join us on Discord for support!

[Feature Request] [Bug Report]

Contributors

GitHub contributors

This project exists thanks to all the people who contribute!

Special Thanks

  • [DockSTARTer] for providing a clean and simple way to get setup with Docker and a stepping stone for this project.