docs: additional guide on finishing

This commit is contained in:
Reinaldy Rafli 2023-04-07 15:34:09 +07:00
parent 411ef0803d
commit e472fc9c0e
Signed by: aldy505
GPG Key ID: 1DAB793F100A560A
1 changed files with 22 additions and 0 deletions

View File

@ -98,6 +98,28 @@ into `localhost`.
You can create a Dockerfile and add a new service schema on `docker-compose.yml` file to state your frontend container You can create a Dockerfile and add a new service schema on `docker-compose.yml` file to state your frontend container
configuration. configuration.
## How do I know if I did it?
Easy, run the Docker Compose. Build everything. See the frontend if it works. See the Redpanda Console if you
published and consume your topics and messages flawlessly.
```bash
docker compose up -d
```
To stop it, use
```bash
docker compose down
```
If you'd like to run just a few services for your local development purposes, for example only `postgres` and `kafka`
services, you can specify it on the `up` command, like so:
```bash
docker compose up -d postgres kafka
```
## Words of affirmation ## Words of affirmation
Good luck, you can do it! Good luck, you can do it!