The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
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.

docker-launcher.md 1.8 KiB

3 år sedan
3 år sedan
3 år sedan
3 år sedan
3 år sedan
3 år sedan
123456789101112131415161718192021222324252627282930313233343536373839404142
  1. Bubble Docker Launcher
  2. ======================
  3. The Bubble Docker Launcher makes it easy to run a Bubble launcher.
  4. ## Automatic Setup
  5. If you're running Linux or Mac OS X, try the automatic setup script first.
  6. This script will automatically install docker, pull the Bubble docker image and run it.
  7. /bin/bash -c "$(curl -sL https://git.bubblev.org/bubblev/bubble/raw/branch/master/docker/launcher.sh)"
  8. ## Docker Installation
  9. If you're running Windows, or if the above script has problems installing Docker,
  10. please [install Docker manually](https://docs.docker.com/engine/install/).
  11. If you're on Mac OS X or Linux, after installing Docker please re-run the above script.
  12. If you're on Windows or would like to run the Bubble docker image directly, follow the instructions below in "Manual Setup".
  13. ## Manual Setup
  14. The commands below assume you already have docker installed, the docker daemon is running and the current user
  15. has appropriate permissions to start docker containers.
  16. To pull and run the Bubble Docker Launcher, open a terminal and run:
  17. BUBBLE_RELEASE_URL="https://jenkins.bubblev.org/public/releases/bubble/latest.txt"
  18. VERSION="$(curl -s ${BUBBLE_RELEASE_URL} | awk -F '_' '{print $2}' | awk -F '.' '{print $1"."$2"."$3}')"
  19. BUBBLE_TAG="getbubble/launcher:${VERSION}"
  20. docker pull ${BUBBLE_TAG}
  21. docker run -p 8090:8090 -t ${BUBBLE_TAG}
  22. ## Activation
  23. Upon a successful startup, the bubble launcher will be listening on port 8090
  24. Your Bubble is running locally in a "blank" mode. It needs an initial "root" account and some basic services configured.
  25. Open http://127.0.0.1:8090/ in a web browser to continue with activation.
  26. Follow the [Bubble Activation](activation.md) instructions to configure your Bubble.
  27. ## Launch a Bubble!
  28. Once your Bubble launcher has been activated, you can [launch a Bubble](launch-node-from-local.md)!