Teampass is a dedicated password manager designed for collaborative team environments. As a free and open-source solution, it allows you to host your own password vault, giving you complete control over your sensitive data. It provides a structured and secure way to share credentials among team members without compromising security.
This tool is built with robust features to meet organizational needs:
services:
teampass:
image: teampass/teampass:latest
ports:
- "8000:80"
volumes:
- ./data/backups:/var/www/html/backups
- ./data/includes:/var/www/html/includes
- ./data/sk:/var/www/html/sk
- ./data/upload:/var/www/html/upload
depends_on:
- db
restart: unless-stopped
db:
image: mariadb:10.11
environment:
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}
MYSQL_DATABASE: teampass
MYSQL_USER: teampass
MYSQL_PASSWORD: ${MYSQL_PASSWORD}
volumes:
- ./mysql-data:/var/lib/mysql
restart: unless-stoppedMYSQL_ROOT_PASSWORD=your_super_secret_root_password
MYSQL_PASSWORD=your_super_secret_teampass_passwordAuto-fetched about 19 hours ago
Auto-fetched about 19 hours ago