web3-proxy/docker-compose.yml

34 lines
797 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:40:43 +03:00
2022-05-22 21:39:06 +03:00
dev-eth:
2022-05-06 04:57:37 +03:00
extends:
file: docker-compose.common.yml
service: base
volumes:
- ./config/example.toml:/config.toml
2022-05-06 04:57:37 +03:00
ports:
- 8544:8544
2022-07-11 22:16:18 +03:00
dev-user-portal:
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: example
dev-adminer:
image: adminer
ports:
- 8080:8080
environment:
ADMINER_DEFAULT_SERVER: dev-db