refactor: folder structure

This commit is contained in:
Mohamed Sohail 2025-03-05 09:09:02 +03:00
parent ca6d6cb06d
commit 88599ded3f
Signed by: kamikazechaser
GPG Key ID: 7DD45520C01CD85D
4 changed files with 36 additions and 29 deletions

2
.gitignore vendored
View File

@ -1 +1 @@
stack.env
**/*/stack.env

View File

@ -31,40 +31,12 @@ services:
retries: 5
networks:
- inethi
eth-tracker:
image: ghcr.io/inethi/eth-tracker:v1.6.1-inethi-prefork
restart: unless-stopped
depends_on:
nats:
condition: service_started
env_file:
- stack.env
volumes:
- tracker-data:/service/db
ports:
- 127.0.0.1:5001:5001
networks:
- inethi
eth-indexer:
image: ghcr.io/inethi/eth-indexer:v2.4.0-inethi
restart: unless-stopped
depends_on:
eth-tracker:
condition: service_started
env_file:
- stack.env
ports:
- 127.0.0.1:5002:5002
networks:
- inethi
volumes:
nats-data:
driver: local
postgres-data:
driver: local
tracker-data:
driver: local
networks:
inethi:

35
stack/docker-compose.yaml Normal file
View File

@ -0,0 +1,35 @@
services:
eth-tracker:
image: ghcr.io/inethi/eth-tracker:v1.6.1-inethi-prefork
restart: unless-stopped
depends_on:
nats:
condition: service_started
env_file:
- stack.env
volumes:
- tracker-data:/service/db
ports:
- 127.0.0.1:5001:5001
networks:
- inethi
eth-indexer:
image: ghcr.io/inethi/eth-indexer:v2.4.0-inethi
restart: unless-stopped
depends_on:
eth-tracker:
condition: service_started
env_file:
- stack.env
ports:
- 127.0.0.1:5002:5002
networks:
- inethi
volumes:
tracker-data:
driver: local
networks:
inethi:
external: true