Skip to content

Commit 2780ea2

Browse files
authored
Merge pull request #1146 from MinaProtocol/lyh/patch-rosetta-docker-compose
Various patches for docker compose to actually work
2 parents c1589b0 + ca01bcc commit 2780ea2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/exchange-operators/rosetta/docker-compose.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Copy and paste the provided configuration into a `docker-compose.yaml` file. The
2020
```yaml
2121
services:
2222
postgres:
23-
image: postgres
23+
image: postgres:17
2424
restart: always
2525
environment:
2626
POSTGRES_PASSWORD: postgres
@@ -110,7 +110,7 @@ services:
110110
bash -c '
111111
mina-rosetta --port 3087 \
112112
--archive-uri postgres://postgres:postgres@postgres:5432/archive \
113-
--graphql-uri mina_node:3085/graphql \
113+
--graphql-uri http://mina_node:3085/graphql \
114114
--log-level Info
115115
'
116116
ports:

docs/node-operators/archive-node/docker-compose.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Copy and paste the provided configuration into a `docker-compose.yml` file. Then
1717
```yaml
1818
services:
1919
postgres:
20-
image: postgres
20+
image: postgres:17
2121
restart: always
2222
environment:
2323
POSTGRES_PASSWORD: postgres

docs/node-operators/archive-node/getting-started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ To run the archive node using Docker Compose:
232232
```yml
233233
services:
234234
postgres:
235-
image: postgres
235+
image: postgres:17
236236
environment:
237237
POSTGRES_PASSWORD: postgres
238238
volumes:

0 commit comments

Comments
 (0)