diff --git a/README.md b/README.md index 90e99b7edd..8d78656139 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,21 @@ node | | | | make install ``` +### Docker + +1. Install [Docker](https://www.docker.com/get-started) 20.10 or higher + +2. Pull the latest celestia-app Docker image + ```bash + docker pull ghcr.io/celestiaorg/celestia-app:latest + ``` + +3. Run the application +- Navigate to `docker` directory, run: + ```bash + docker-compose up + ``` + ### Prebuilt binary If you'd rather not install from source, you can download a prebuilt binary from the [releases](https://github.com/celestiaorg/celestia-app/releases) page. diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml new file mode 100644 index 0000000000..5639fd4561 --- /dev/null +++ b/docker/docker-compose.yml @@ -0,0 +1,10 @@ +version: '3' + services: + celestia-app: + image: ghcr.io/celestiaorg/celestia-app:latest + volumes: + - ./data:/root/.celestia-app + ports: + - "26657:26657" # RPC + - "26656:26656" # P2P + command: ["celestia-appd", "start"] \ No newline at end of file