web3-proxy/docker-compose.yml

37 lines
916 B
YAML
Raw Normal View History

2022-05-06 04:40:43 +03:00
---
# development config
2022-05-06 04:40:43 +03:00
version: "3.4"
2022-05-06 04:57:37 +03:00
services:
2022-05-22 21:39:06 +03:00
dev-redis:
build: ./redis-cell-server/
2022-05-06 04:57:37 +03:00
ports:
2022-07-26 03:38:00 +03:00
- 127.0.0.1:6379:6379
# TODO: expose these ports?
2022-07-11 22:16:18 +03:00
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:
2022-07-26 03:38:00 +03:00
MYSQL_ROOT_PASSWORD: dev_web3_proxy
ports:
- 127.0.0.1:3306:3306
2022-07-11 22:16:18 +03:00
dev-adminer:
image: adminer
ports:
2022-07-26 03:38:00 +03:00
- 127.0.0.1:8306:8080
2022-07-11 22:16:18 +03:00
environment:
ADMINER_DEFAULT_SERVER: dev-db
2022-07-26 03:38:00 +03:00
dev-eth:
extends:
file: docker-compose.common.yml
service: base
volumes:
- ./config/example.toml:/config.toml
ports:
- 127.0.0.1:8544:8544