Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/exchange-operators/rosetta/docker-compose.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Copy and paste the provided configuration into a `docker-compose.yaml` file. The
```yaml
services:
postgres:
image: postgres
image: postgres:17
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

restart: always
environment:
POSTGRES_PASSWORD: postgres
Expand Down Expand Up @@ -110,7 +110,7 @@ services:
bash -c '
mina-rosetta --port 3087 \
--archive-uri postgres://postgres:postgres@postgres:5432/archive \
--graphql-uri mina_node:3085/graphql \
--graphql-uri http://mina_node:3085/graphql \
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

--log-level Info
'
ports:
Expand Down
2 changes: 1 addition & 1 deletion docs/node-operators/archive-node/docker-compose.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Copy and paste the provided configuration into a `docker-compose.yml` file. Then
```yaml
services:
postgres:
image: postgres
image: postgres:17
restart: always
environment:
POSTGRES_PASSWORD: postgres
Expand Down
2 changes: 1 addition & 1 deletion docs/node-operators/archive-node/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ To run the archive node using Docker Compose:
```yml
services:
postgres:
image: postgres
image: postgres:17
environment:
POSTGRES_PASSWORD: postgres
volumes:
Expand Down