Skip to content

Commit

Permalink
Update docker-compose.mdx (#282)
Browse files Browse the repository at this point in the history
* Update docker-compose.mdx

Minor updates to fast deployment process due to changes in Docker Compose

* Update docs/deployment/docker-compose.mdx

---------

Co-authored-by: Ariel Weinberger <[email protected]>
  • Loading branch information
inerserp and arielweinberger authored Jan 8, 2024
1 parent 24ad3f4 commit 6ac3bdc
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion docs/deployment/docker-compose.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,19 @@ git clone https://github.com/pezzolabs/pezzo.git
cd pezzo
```

## Add the necessary environmental variables

Append the environmental variables from the `apps/` folder to the root directory

```bash
cat apps/server/.env >> .env.local
cat apps/console/.env >> .env.local
## Running with Docker Compose

Run the following command to start the Pezzo stack:

```bash
docker-compose up
docker compose up
```

This command will spin up all infrastructure services (PostgreSQL, Redis, etc.) and the Pezzo components (Server, Console). It will also automatically apply database migration to the PostgreSQL database.
Expand Down

0 comments on commit 6ac3bdc

Please sign in to comment.