TeamMapper is a web-based tool designed for creating and sharing mind maps. It provides a digital canvas for you and your team to brainstorm ideas, structure information, and plan projects visually. The platform is built for collaboration, allowing multiple users to work on the same map simultaneously, making it ideal for remote teams and interactive meetings.
Key features include:
services:
teammapper:
image: ghcr.io/b310-digital/teammapper:latest
container_name: teammapper
ports:
- "3000:3000"
environment:
- DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/${POSTGRES_DB}?schema=public
depends_on:
- postgres
restart: unless-stopped
postgres:
image: postgres:14-alpine
container_name: teammapper_postgres
environment:
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=${POSTGRES_DB}
volumes:
- ./postgres-data:/var/lib/postgresql/data
restart: unless-stopped
POSTGRES_USER=teammapper
POSTGRES_PASSWORD=your_super_secret_password
POSTGRES_DB=teammapper
Auto-fetched about 23 hours ago
Auto-fetched about 23 hours ago