mirror of
https://github.com/moghtech/komodo.git
synced 2026-05-03 03:25:23 -05:00
19 lines
602 B
Plaintext
19 lines
602 B
Plaintext
# Postgres
|
|
|
|
1. Copy `komodo/postgres.compose.yaml` and `komodo/compose.env` to your host:
|
|
```bash
|
|
wget -P komodo https://raw.githubusercontent.com/moghtech/komodo/main/compose/postgres.compose.yaml && \
|
|
wget -P komodo https://raw.githubusercontent.com/moghtech/komodo/main/compose/compose.env
|
|
```
|
|
2. Edit the variables in `komodo/compose.env`.
|
|
3. Deploy:
|
|
|
|
```bash
|
|
docker compose -p komodo -f komodo/postgres.compose.yaml --env-file komodo/compose.env up -d
|
|
```
|
|
|
|
```mdx-code-block
|
|
import ComposeAndEnv from "@site/src/components/ComposeAndEnv";
|
|
|
|
<ComposeAndEnv file_name="postgres.compose.yaml" />
|
|
``` |