Skip to content

Instantly share code, notes, and snippets.

@JAlcocerT
Last active December 26, 2023 14:01
Show Gist options
  • Save JAlcocerT/953cab1052af58f4241f28dbc0a314a0 to your computer and use it in GitHub Desktop.
Save JAlcocerT/953cab1052af58f4241f28dbc0a314a0 to your computer and use it in GitHub Desktop.
FOSS Data Analytics Tools
version: '3'
services:
metabase:
image: metabase/metabase
container_name: metabase
ports:
- "3000:3000"
volumes:
- metabase_data:/metabase-data
restart: always
volumes:
metabase_data:
git clone https://github.com/getredash/setup
cd setup
rm -rf .git
chmod +x ./setup.sh
./setup.sh
#http://localhost:5000/setup
git clone https://github.com/apache/superset.git
cd Superset
rm -rf .git
docker compose up -d
git checkout 3.0.0
TAG=3.0.0 docker compose -f docker-compose-non-dev.yml pull
TAG=3.0.0 docker compose -f docker-compose-non-dev.yml up
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment