Vylpes
6a00c49ef3
* Add database and default values * Add ability to save a setting to the database * Get commands and events to use database * Setup and config command * Update commands to check roles per server * Different rules per server Signed-off-by: Ethan Lane <ethan@vylpes.com> * Different prefix per server Signed-off-by: Ethan Lane <ethan@vylpes.com> * Add verification system Signed-off-by: Ethan Lane <ethan@vylpes.com> * Disabled commands per server * Add devmode for default prefix * Update embeds * Fix broken tests
24 lines
No EOL
466 B
YAML
24 lines
No EOL
466 B
YAML
version: "3.9"
|
|
services:
|
|
# discord:
|
|
# build: .
|
|
|
|
database:
|
|
image: mysql/mysql-server
|
|
command: --default-authentication-plugin=mysql_native_password
|
|
restart: always
|
|
environment:
|
|
- MYSQL_DATABASE=vylbot
|
|
- MYSQL_USER=dev
|
|
- MYSQL_PASSWORD=dev
|
|
- MYSQL_ROOT_PASSWORD=root
|
|
ports:
|
|
- 3306:3306
|
|
|
|
phpmyadmin:
|
|
image: phpmyadmin
|
|
restart: always
|
|
ports:
|
|
- 8080:80
|
|
environment:
|
|
- PMA_ARBITRARY=1 |