Skip to content
Open
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
13 changes: 6 additions & 7 deletions docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,15 @@ services:
service: db

backend:
image: ghcr.io/lambdaclass/blockscout-private:9.2.2.commit.763c41da
platform: linux/arm64
pull_policy: always
depends_on:
- db
- redis-db
extends:
file: ./services/backend.yml
service: backend
build:
context: ..
dockerfile: ./docker/Dockerfile
args:
RELEASE_VERSION: 9.2.2
links:
- db:database
environment:
Expand All @@ -49,8 +47,9 @@ services:
service: sig-provider

frontend:
image: blockscout/frontend
pull_policy: missing
image: ghcr.io/lambdaclass/frontend-private:test
platform: linux/amd64
pull_policy: always
depends_on:
- backend
extends:
Expand Down
7 changes: 4 additions & 3 deletions docker-compose/services/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ version: '3.9'

services:
backend:
# image: ghcr.io/blockscout/${DOCKER_REPO:-blockscout}:${DOCKER_TAG:-latest}
# pull_policy: always
# restart: always
image: ghcr.io/lambdaclass/blockscout-private:9.2.2.commit.763c41da
pull_policy: always
restart: always
platform: linux/amd64
stop_grace_period: 5m
container_name: 'backend'
command: sh -c "bin/blockscout eval \"Elixir.Explorer.ReleaseTasks.create_and_migrate()\" && bin/blockscout start"
Expand Down
6 changes: 3 additions & 3 deletions docker-compose/services/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ version: '3.9'

services:
frontend:
image: blockscout/frontend
# pull_policy: always
# platform: linux/amd64
image: ghcr.io/lambdaclass/frontend-private:test
pull_policy: always
platform: linux/amd64
restart: always
container_name: 'frontend'
env_file:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/services/stats.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ services:
- STATS__BLOCKSCOUT_DB_URL=${STATS__BLOCKSCOUT_DB_URL:-postgresql://blockscout:ceWb1MeLBEeOIfk65gU8EjF8@db:5432/blockscout}
- STATS__CREATE_DATABASE=${STATS__CREATE_DATABASE:-true}
- STATS__RUN_MIGRATIONS=${STATS__RUN_MIGRATIONS:-true}
- STATS__BLOCKSCOUT_API_URL=${STATS__BLOCKSCOUT_API_URL:-http://localhost:8082}
- STATS__BLOCKSCOUT_API_URL=${STATS__BLOCKSCOUT_API_URL:-http://host.docker.internal:8082}
- STATS__SERVER__HTTP__CORS__ENABLED=${STATS__SERVER__HTTP__CORS__ENABLED:-false}
- STATS__SERVER__HTTP__CORS__ALLOWED_ORIGIN=${STATS__SERVER__HTTP__CORS__ALLOWED_ORIGIN}
- STATS__CONDITIONAL_START__USER_OPS_PAST_INDEXING_FINISHED__ENABLED=${STATS__CONDITIONAL_START__USER_OPS_PAST_INDEXING_FINISHED__ENABLED:-false}
Expand Down
Loading