2022-05-06 04:40:43 +03:00
---
2022-05-21 23:40:22 +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 :
2022-05-21 23:40:22 +03:00
build : ./redis-cell-server/
2022-07-25 03:27:00 +03:00
# TODO: expose these ports?
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 :
2022-05-21 23:40:22 +03:00
- ./config/example.toml:/config.toml
2022-05-06 04:57:37 +03:00
ports :
2022-05-21 23:40:22 +03:00
- 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