Skip to content

Commit

Permalink
💫
Browse files Browse the repository at this point in the history
  • Loading branch information
Artemiy Sayolight committed Apr 8, 2023
1 parent 75fcc7a commit 14a64f5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@ BOT_TOKEN=
SUPPORT_CHAT_ID=
LOGGING_LEVEL=info

MYSQL_DB_HOST=
MYSQL_DB_NAME=
MYSQL_DB_USERNAME=
MYSQL_ROOT_PASSWORD=
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ services:
SUPPORT_CHAT_ID: ${SUPPORT_CHAT_ID}
LOGGING_LEVEL: ${LOGGING_LEVEL}

DB_HOST: mysql
DB_NAME: supportbot
DB_USERNAME: root
DB_HOST: ${MYSQL_DB_HOST}
DB_NAME: ${MYSQL_DB_NAME}
DB_USERNAME: ${MYSQL_DB_USERNAME}
DB_PASSWORD: ${MYSQL_ROOT_PASSWORD}
mysql:
image: mysql:5.7
Expand Down

0 comments on commit 14a64f5

Please sign in to comment.