Kick off your next ideation session instantly by setting up a central challenge for your team to solve. This lightweight platform provides a distraction-free environment to gather thoughts, collaborate on solutions, and generate creative ideas without the hassle of complex setups.\n\nKey benefits include:\n* Instant challenge creation: Start a new brainstorming session in seconds by simply defining your core topic.\n* Automatic cleanup: All brainstorming boards are automatically deleted after 30 days, ensuring your temporary ideas do not leave a permanent digital footprint.\n* European data standards: Proudly developed and hosted in the EU, offering peace of mind regarding data handling.\n* Frictionless collaboration: Invite participants to contribute immediately without navigating through heavy interfaces.\n\nGather your team, define the challenge, and start capturing brilliant ideas right away.
services:
mindwendel:
image: ghcr.io/b310-digital/mindwendel:latest
restart: unless-stopped
ports:
- "4000:4000"
environment:
- SECRET_KEY_BASE=${SECRET_KEY_BASE}
- DATABASE_URL=ecto://${POSTGRES_USER}:${POSTGRES_PASSWORD}@db/${POSTGRES_DB}
- PHX_HOST=localhost
depends_on:
- db
db:
image: postgres:15-alpine
restart: unless-stopped
environment:
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=${POSTGRES_DB}
volumes:
- ./data/db:/var/lib/postgresql/dataPOSTGRES_USER=mindwendel
POSTGRES_PASSWORD=your_secure_password
POSTGRES_DB=mindwendel
# Generate a strong secret key (e.g., using `openssl rand -base64 48`)
SECRET_KEY_BASE=your_generated_secret_key_base_hereAuto-fetched about 3 hours ago