Skip to content

Commit

Permalink
compose image bump
Browse files Browse the repository at this point in the history
  • Loading branch information
bragov4ik committed Aug 29, 2024
1 parent 3955ad0 commit bce2f9b
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions stats/docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.9'

services:
db-init:
image: postgres:15
image: postgres:16
volumes:
- ./data/blockscout-db:/var/lib/postgresql/data
entrypoint:
Expand All @@ -15,7 +15,7 @@ services:
depends_on:
db-init:
condition: service_completed_successfully
image: postgres:15
image: postgres:16
user: 2000:2000
shm_size: 256m
restart: always
Expand All @@ -40,7 +40,7 @@ services:
backend:
depends_on:
- db
image: blockscout/blockscout:6.4.0
image: blockscout/blockscout:6.8.0
links:
- db:database
# extra_hosts:
Expand All @@ -58,15 +58,10 @@ services:
PORT: 4000
ports:
- 80:4000
command:
[
"/bin/sh",
"-c",
"bin/blockscout eval \"Elixir.Explorer.ReleaseTasks.create_and_migrate()\" && bin/blockscout start"
]
command: [ "/bin/sh", "-c", "bin/blockscout eval \"Elixir.Explorer.ReleaseTasks.create_and_migrate()\" && bin/blockscout start" ]

stats-db-init:
image: postgres:15
image: postgres:16
volumes:
- ./data/stats-db:/var/lib/postgresql/data
entrypoint:
Expand All @@ -79,7 +74,7 @@ services:
depends_on:
stats-db-init:
condition: service_completed_successfully
image: postgres:15
image: postgres:16
user: 2000:2000
shm_size: 256m
restart: always
Expand Down

0 comments on commit bce2f9b

Please sign in to comment.