Docker container for TapChat
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
Chris Smith 385b1e0ed0 Initial version 8 år sedan
Dockerfile Initial version 8 år sedan
README.md Initial version 8 år sedan
tapchat.expect Initial version 8 år sedan
tapchat.sh Initial version 8 år sedan

README.md

TapChat Dockerfile

This is a dockerised version of TapChat

Usage

Create a named volume to persist data:

docker volume create --name tapchat-data

Pull the image for the desired version of TapChat:

docker pull csmith/tapchat:0.0.42

Start a container, exposing the TapChat port:

docker run -d --name tapchat \
              --restart always \
              -p 8067:8067 \
              -v tapchat-data:/.tapchat \
              csmith/tapchat:0.0.42

Defaults

TapChat will be configured to listen on the default port of 8067, and a default account with the username admin and password admin will be created.

You can access a web interface at https://:8067/ in order to change the password or create a new account.