https://gitlab.com/tezos/tezos
Raw File
Tip revision: 38bce6e331f4c08205629149b5483586deb069fb authored by Julien Coolen on 03 April 2024, 13:01:47 UTC
lib_version: display chain in starting_node event
Tip revision: 38bce6e
alpha.yml
version: "3"
services:
  octez-node:
    container_name: octez-node-alpha
    image: tezos/tezos:latest
    hostname: octez-node
    command: octez-node
    ports:
      - 9732:9732
      - 8732:8732
    environment:
      NODE_HOST: octez-node
      PROTOCOL: alpha
    volumes:
      - node_data:/var/run/tezos/node
      - client_data:/var/run/tezos/client
    restart: on-failure

  octez-baker:
    container_name: octez-baker-alpha
    image: tezos/tezos:latest
    hostname: octez-baker
    command: octez-baker --liquidity-baking-toggle-vote $LIQUIDITY_BAKING_VOTE
    environment:
      NODE_HOST: octez-node
      PROTOCOL: alpha
    volumes:
      - client_data:/var/run/tezos/client
      - node_data:/var/run/tezos/node
    restart: on-failure


  octez-accuser:
    container_name: octez-accuser-alpha
    image: tezos/tezos:latest
    hostname: octez-accuser
    command: octez-accuser
    environment:
      NODE_HOST: octez-node
      PROTOCOL: alpha
    volumes:
      - client_data:/var/run/tezos/client
      - node_data:/var/run/tezos/node
    restart: on-failure

volumes:
  node_data: {}
  client_data: {}
back to top