Sign inSign up

jarbelix/teampass-web

By jarbelix

Updated almost 4 years ago
Archived

Latest version https://teampass.net/ via https://github.com/nilsteampassnet/TeamPass

Image
0

207

jarbelix/teampass-web repository overview

Latest version of https://teampass.net/ via https://github.com/nilsteampassnet/TeamPass

How to use?

Create a teampass directory

mkdir teampass && cd teampass

Create a docker-compose.yml like below

version: "3"

services:

  teampass-web:
    image: jarbelix/teampass-web
    restart: unless-stopped
    environment:
      - "PUID=1000"
      - "PGID=1000"
      - "TZ=America/Campo_Grande"
    volumes:
      - ./teampass-html:/var/www/html
    ports:
      - "81:80"

  db:
    restart: unless-stopped
    image: mariadb:10.5
    environment:
      MYSQL_ROOT_PASSWORD: YOUR_SUPERSECRET_PASSWORD
      MYSQL_DATABASE: teampass
      MYSQL_PASSWORD: YOUR_SECRET_PASSWORD
      MYSQL_USER: teampass
    volumes:
      - ./teampass-db:/var/lib/mysql

Run the container as below

docker-compose up -d

Tag summary

Content type

Image

Digest

sha256:c6685ebd9

Size

174.3 MB

Last updated

almost 4 years ago

docker pull jarbelix/teampass-web