mirror of
https://github.com/logos-blockchain/logos-blockchain-pocs.git
synced 2026-01-27 17:33:12 +00:00
18 lines
516 B
YAML
18 lines
516 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
backend:
|
|
image: ghcr.io/blockscout/${DOCKER_REPO:-blockscout}:${DOCKER_TAG:-latest}
|
|
pull_policy: always
|
|
restart: always
|
|
stop_grace_period: 5m
|
|
container_name: 'backend'
|
|
command: sh -c "bin/blockscout eval \"Elixir.Explorer.ReleaseTasks.create_and_migrate()\" && bin/blockscout start"
|
|
extra_hosts:
|
|
- 'host.docker.internal:host-gateway'
|
|
env_file:
|
|
- ../envs/common-blockscout.env
|
|
volumes:
|
|
- ./logs/:/app/logs/
|
|
- ./dets/:/app/dets/
|