mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
Updating dockerfile for release v1.2.0-rc1
This commit is contained in:
Binary file not shown.
@@ -34,7 +34,7 @@ VOLUME /var/lib/mysql
|
|||||||
WORKDIR /mattermost
|
WORKDIR /mattermost
|
||||||
|
|
||||||
# Copy over files
|
# Copy over files
|
||||||
ADD https://github.com/mattermost/platform/releases/download/v1.0.0/mattermost.tar.gz /
|
ADD https://github.com/mattermost/platform/releases/download/v1.2.0-rc1/mattermost.tar.gz /
|
||||||
RUN tar -zxvf /mattermost.tar.gz --strip-components=1 && rm /mattermost.tar.gz
|
RUN tar -zxvf /mattermost.tar.gz --strip-components=1 && rm /mattermost.tar.gz
|
||||||
ADD config_docker.json /
|
ADD config_docker.json /
|
||||||
ADD docker-entry.sh /
|
ADD docker-entry.sh /
|
||||||
BIN
docker/1.2/Dockerrun.aws.zip
Normal file
BIN
docker/1.2/Dockerrun.aws.zip
Normal file
Binary file not shown.
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"AWSEBDockerrunVersion": "1",
|
"AWSEBDockerrunVersion": "1",
|
||||||
"Image": {
|
"Image": {
|
||||||
"Name": "mattermost/platform:1.0",
|
"Name": "mattermost/platform:1.2",
|
||||||
"Update": "true"
|
"Update": "true"
|
||||||
},
|
},
|
||||||
"Ports": [
|
"Ports": [
|
||||||
23
docker/1.2/README.md
Normal file
23
docker/1.2/README.md
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
Mattermost
|
||||||
|
==========
|
||||||
|
|
||||||
|
http:/mattermost.org
|
||||||
|
|
||||||
|
Mattermost is an open-source team communication service. It brings team messaging and file sharing into one place, accessible across PCs and phones, with archiving and search.
|
||||||
|
|
||||||
|
Installing Mattermost
|
||||||
|
=====================
|
||||||
|
|
||||||
|
To run an instance of the latest version of mattermost on your local machine you can run:
|
||||||
|
|
||||||
|
`docker run --name mattermost-dev -d --publish 8065:80 mattermost/platform`
|
||||||
|
|
||||||
|
To update this image to the latest version you can run:
|
||||||
|
|
||||||
|
`docker pull mattermost/platform`
|
||||||
|
|
||||||
|
To run an instance of the latest code from the master branch on GitHub you can run:
|
||||||
|
|
||||||
|
`docker run --name mattermost-dev -d --publish 8065:80 mattermost/platform:dev`
|
||||||
|
|
||||||
|
Any questions, please visit http://forum.mattermost.org
|
||||||
@@ -5,15 +5,21 @@
|
|||||||
"SegmentDeveloperKey": "",
|
"SegmentDeveloperKey": "",
|
||||||
"GoogleDeveloperKey": "",
|
"GoogleDeveloperKey": "",
|
||||||
"EnableOAuthServiceProvider": false,
|
"EnableOAuthServiceProvider": false,
|
||||||
"EnableIncomingWebhooks": false,
|
"EnableIncomingWebhooks": true,
|
||||||
"EnableTesting": false
|
"EnableOutgoingWebhooks": true,
|
||||||
|
"EnablePostUsernameOverride": false,
|
||||||
|
"EnablePostIconOverride": false,
|
||||||
|
"EnableTesting": false,
|
||||||
|
"EnableSecurityFixAlert": true
|
||||||
},
|
},
|
||||||
"TeamSettings": {
|
"TeamSettings": {
|
||||||
"SiteName": "Mattermost",
|
"SiteName": "Mattermost",
|
||||||
"MaxUsersPerTeam": 50,
|
"MaxUsersPerTeam": 50,
|
||||||
"EnableTeamCreation": true,
|
"EnableTeamCreation": true,
|
||||||
"EnableUserCreation": true,
|
"EnableUserCreation": true,
|
||||||
"RestrictCreationToDomains": ""
|
"RestrictCreationToDomains": "",
|
||||||
|
"RestrictTeamNames": true,
|
||||||
|
"EnableTeamListing": false
|
||||||
},
|
},
|
||||||
"SqlSettings": {
|
"SqlSettings": {
|
||||||
"DriverName": "mysql",
|
"DriverName": "mysql",
|
||||||
@@ -86,4 +92,4 @@
|
|||||||
"TokenEndpoint": "",
|
"TokenEndpoint": "",
|
||||||
"UserApiEndpoint": ""
|
"UserApiEndpoint": ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user