Docker setup for Houdini
Go to file
2024-09-06 01:15:24 +00:00
.github/workflows Add snowflake configuration to wand (#34) 2024-06-07 15:16:17 +07:00
dash@8f0c0d31ba Fast-forward sub-modules 2024-07-15 01:12:09 +00:00
houdini@5815b9a0f1 Fast-forward sub-modules 2024-09-04 01:15:23 +00:00
legacy-media@b3a86b7068 Fast-forward sub-modules 2020-06-13 01:46:27 +01:00
snowflake@822523e1f9 Fast-forward sub-modules 2024-09-06 01:15:24 +00:00
templates Add dash configuration for card-jitsu snow (#35) 2024-06-19 10:30:54 +07:00
vanilla-media@e8666de198 Fast-forward sub-modules 2024-03-11 01:01:08 +00:00
web Update Dockerfile to auto switch the architecture 2023-08-27 18:09:25 +07:00
.env Add snowflake configuration to wand (#34) 2024-06-07 15:16:17 +07:00
.gitmodules Add snowflake configuration to wand (#34) 2024-06-07 15:16:17 +07:00
docker-compose.yml Add dash configuration for card-jitsu snow (#35) 2024-06-19 10:30:54 +07:00
install.sh Update install.sh & README.md (#37) 2024-08-23 13:43:50 +07:00
LICENSE.md Initial commit 2020-04-25 18:30:49 +01:00
README.md Update install.sh & README.md (#37) 2024-08-23 13:43:50 +07:00
servers.xml Updated servers.xml 2020-05-07 03:53:02 +01:00
wait-for-postgres.sh Use $POSTGRES_USER environment variable 2020-05-07 17:28:53 +01:00

wand

Wand makes it easy to configure dash, houdini and a media server utilizing docker & docker-compose.

Note

This can also be ran on Windows using WSL.

Installation script

Step 1 run the script

bash <(curl -s https://raw.githubusercontent.com/solero/wand/master/install.sh)

Step 2 Answer Questions which are:

  • Database password (Leave blank for random password)
  • Hostname (example: clubpenguin.com) (Leave empty for localhost)
  • External IP Address (Leave empty for localhost) Step 3 Run and enjoy. Run this command:
$ cd wand && sudo docker-compose up

Manual setup

Important

This is not recommended for beginners. If you're not sure what you're doing, use the install script.

Step 1 Choose your Linux Distribution

Debian/Ubuntu
$ sudo apt update
$ sudo apt install git curl
$ curl -fsSL https://get.docker.com -o get-docker.sh
$ sh get-docker.sh
$ sudo curl -L "https://github.com/docker/compose/releases/download/v2.20.3/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
$ sudo chmod +x /usr/local/bin/docker-compose
Fedora/RHEL
$ sudo dnf update
$ sudo dnf install git curl
$ curl -fsSL https://get.docker.com -o get-docker.sh
$ sh get-docker.sh
$ sudo curl -L "https://github.com/docker/compose/releases/download/v2.20.3/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
$ sudo chmod +x /usr/local/bin/docker-compose
Arch based distros
$ sudo pacman -Syu
$ sudo pacman -S docker docker-compose git curl
$ systemctl start docker.service
$ systemctl enable docker.service

Step 2 Clone the repository & submodules

$ git clone --recurse-submodules https://github.com/solero/wand && cd wand

Step 3 Edit the config file (optional, default values are fine for a local setup)

$ nano .env

Step 4 Start the services

$ sudo docker-compose up

Step 5 You're done!