Schemas and utils for IPLD ETH Postgres database
Go to file
Roy Crihfield 5b92e02ebd Docker compose cleanup
- preferred naming convenion is compose.yaml
- test compose was redundant
- uncomment build section for convenience, since it's only used as a fallback
2023-07-23 01:27:00 +08:00
.github/workflows Docker compose cleanup 2023-07-23 01:27:00 +08:00
db/migrations Do not make eth.header_cids a hypertable. (#137) 2023-07-21 13:27:26 -05:00
scripts Startup script tweaks 2023-05-15 12:03:30 +08:00
.gitignore Add block hash to primary keys in transactions, receipts and logs tables (#100) 2022-07-07 16:21:06 +05:30
compose.yml Docker compose cleanup 2023-07-23 01:27:00 +08:00
Dockerfile fix after cherry-pick 2023-03-21 12:50:37 -05:00
LICENSE Initial commit 2021-05-13 17:14:05 -05:00
Makefile Docker compose cleanup 2023-07-23 01:27:00 +08:00
README.md Add block hash to primary keys in transactions, receipts and logs tables (#100) 2022-07-07 16:21:06 +05:30
schema.sql Do not make eth.header_cids a hypertable. (#137) 2023-07-21 13:27:26 -05:00
vulcanize_db.png updated uml 2021-12-27 11:41:30 -06:00
vulcanize_db.uml updated uml 2021-12-27 11:41:30 -06:00

ipld-eth-db

Schemas and utils for IPLD ETH Postgres database

Database UML

Run

  • Remove any existing containers / volumes:

    docker-compose down -v --remove-orphans
    
  • Spin up ipld-eth-db using an existing image:

    • Update image source used for running the migrations in docker-compose.yml (if required).

    • Run:

      docker-compose -f docker-compose.yml up
      
  • Spin up ipld-eth-db using a locally built image:

    • Update Dockerfile (if required).

    • Update build context used for running the migrations in docker-compose.test.yml (if required).

    • Run:

      docker-compose -f docker-compose.test.yml up --build