web3-proxy/docker-compose.yml
2022-07-26 00:38:00 +00:00

37 lines
916 B
YAML

---
# development config
version: "3.4"
services:
dev-redis:
build: ./redis-cell-server/
ports:
- 127.0.0.1:6379:6379
# TODO: expose these ports?
dev-db:
image: mysql
# NOTE: use of "mysql_native_password" is not recommended: https://dev.mysql.com/doc/refman/8.0/en/upgrading-from-previous-series.html#upgrade-caching-sha2-password
# (this is just an example, not intended to be a production configuration)
command: --default-authentication-plugin=mysql_native_password
environment:
MYSQL_ROOT_PASSWORD: dev_web3_proxy
ports:
- 127.0.0.1:3306:3306
dev-adminer:
image: adminer
ports:
- 127.0.0.1:8306:8080
environment:
ADMINER_DEFAULT_SERVER: dev-db
dev-eth:
extends:
file: docker-compose.common.yml
service: base
volumes:
- ./config/example.toml:/config.toml
ports:
- 127.0.0.1:8544:8544