Skip to content

Commit

Permalink
Merge pull request #70 from JarvusInnovations/develop
Browse files Browse the repository at this point in the history
Release: emergence v1.1.3
  • Loading branch information
themightychris authored Jun 10, 2019
2 parents 39bad71 + fa9f7f8 commit 76abe21
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ RUN npm install -g /src
# setup and expose emergence
RUN mkdir -p /emergence
EXPOSE 22 80 3306 9083
ENV MYSQL_HOME=/emergence/services/etc
VOLUME ["/emergence"]


Expand Down
7 changes: 7 additions & 0 deletions kernel-lib/services/mysql.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,13 @@ MysqlService.prototype.makeConfig = function () {
var me = this,
config = [];

config.push(
'[client]',
'socket = '+me.options.socketPath,
'user = '+me.options.managerUser,
'password = '+me.options.managerPassword
);

config.push(
'[mysqld]',
'character-set-server = utf8',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "emergence",
"preferGlobal": true,
"version": "1.1.2",
"version": "1.1.3",
"license": "MIT",
"dependencies": {
"hostile": "^1.3.x",
Expand Down

0 comments on commit 76abe21

Please sign in to comment.