Untitled

                Never    
YAML
       
version: '3.7'

services:

  tezos-proto-front:
    container_name: tezos-proto-front
    image: tezos-proto-front
    build:
      context: ../wallet
      dockerfile: ./docker/local-dev.dockerfile
    # environment:
    #   API_PROTOCOL: http
    #   API_URL: localhost
    volumes:
      - ../wallet:/app
      # - ../data:/var/lib/mongodb
    restart: unless-stopped
    # links:
      # - lucien-coycault-landing-db:db
    ports:
      - '8080:8080'
      # - '3000:3000'

  tezos-private-node-1:
    container_name: tezos-node-private-1
    image: tezos-node-private
    build:
      context: ../node
      dockerfile: dockerfile
    environment:
      NETWORK_NAME: TEZOS_TESTNET
      NET_ADDR: 172.28.1.1
      PEERS: 172.28.1.2
      EXPECTED_POW: 1
      CORS_ORIGIN: "*"
      WALLET_NAME: test
      SEEDED: "true"
      TEZOS_CLIENT_UNSAFE_DISABLE_DISCLAIMER: Y
    # volumes:
      # - ./node:/home/tezos/.tezos-node
      # - ./client:/home/tezos/.tezos-client
      # - ./data:/data
    ports:
      - 8732:8732
      - 9732:9732
    networks:
      tezos-private:
        ipv4_address: 172.28.1.1

networks:
  tezos-private:
    ipam:
      driver: default
      config:
        - subnet: 172.28.0.0/16

Raw Text