This repo is only used for legacy (not harmony) scopes. for harmony please use https://github.com/teambit/bit/blob/master/scripts/docker-teambit-bit/README.md
A dockerfile setup to run your own Bit server.
If you want to setup a bare-bone Bit remote server without Docker, please refer to this guide.
- Clone this repository.
- Build image and run server.
$ docker build . -t bit $ docker run --rm --name bit -d -P --volume ~/.ssh/id_rsa.pub:/tmp/id_rsa.pub bitcli/bit-docker $ docker port bit 22
- Configure workspace to use the server.
$ bit remote add ssh://root@<hostname>:22:/tmp/scope -g
- Export components to a Bit server.
$ bit export scope - Import components from a Bit server.
$ bit import scope.<component-name>
- Stop server
$ docker kill bit
- See if container is running.
$ docker ps --all | grep bit - Make the SSH port is configured correctly.
$ docker port bit 22
- See that your server is configured for your workspace.
$ bit remote
Bit uses SSH for networking. This setup mounts your user account SSH keys.
To manually set up authentication, or authenticate another key:
- Copy a public key to the container.
$ docker cp ~/.ssh/id_rsa bit:/root/.ssh/ - Run bash on the container.
$ docker exec -it bit /bin/bash - Configure the container's SSH daemon with the new key (run from container's bash).
$ bit config ssh_key_file /root/.ssh/id_rsa
When you need to run any command on the Bit server, you first need to get bash on the container:
$ docker exec -it bit /bin/bashNow each command you run, runs on the server.
To run the tail command and get the server's logs, you should first get bash on the container. Then tail Bit's log:
$ tail -f /root/Library/Caches/Bit/logs/debug.logAfter building Bit from source code, run this command:
$ docker run --rm --name bit -d -P --volume <path to git-clone of bit>:/bit-bin --volume ~/.ssh/id_rsa.pub:/tmp/id_rsa.pub --env 'DEVELOPMENT=true' bitcli/bit-dockerContributions are always welcome, no matter how large or small.
MIT License.