Updating dockerfile for release v1.3.0-rc1

Этот коммит содержится в:
Christopher Speller
2015-12-09 14:45:03 -05:00
родитель 2396cfafc1
Коммит 92d0dad18b
8 изменённых файлов: 32 добавлений и 7 удалений

Двоичные данные
docker/1.1/Dockerrun.aws.zip

Двоичный файл не отображается.

Просмотреть файл

@@ -34,7 +34,7 @@ VOLUME /var/lib/mysql
WORKDIR /mattermost
# Copy over files
ADD https://github.com/mattermost/platform/releases/download/v1.1.0/mattermost.tar.gz /
ADD https://github.com/mattermost/platform/releases/download/v1.3.0-rc1/mattermost.tar.gz /
RUN tar -zxvf /mattermost.tar.gz --strip-components=1 && rm /mattermost.tar.gz
ADD config_docker.json /
ADD docker-entry.sh /

Двоичные данные
docker/1.3/Dockerrun.aws.zip Обычный файл

Двоичный файл не отображается.

Просмотреть файл

@@ -1,7 +1,7 @@
{
"AWSEBDockerrunVersion": "1",
"Image": {
"Name": "mattermost/platform:1.1",
"Name": "mattermost/platform:1.3",
"Update": "true"
},
"Ports": [

23
docker/1.3/README.md Обычный файл
Просмотреть файл

@@ -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,7 +5,8 @@
"SegmentDeveloperKey": "",
"GoogleDeveloperKey": "",
"EnableOAuthServiceProvider": false,
"EnableIncomingWebhooks": true,
"EnableIncomingWebhooks": false,
"EnableOutgoingWebhooks": false,
"EnablePostUsernameOverride": false,
"EnablePostIconOverride": false,
"EnableTesting": false,
@@ -16,7 +17,9 @@
"MaxUsersPerTeam": 50,
"EnableTeamCreation": true,
"EnableUserCreation": true,
"RestrictCreationToDomains": ""
"RestrictCreationToDomains": "",
"RestrictTeamNames": true,
"EnableTeamListing": false
},
"SqlSettings": {
"DriverName": "mysql",
@@ -65,9 +68,8 @@
"ConnectionSecurity": "",
"InviteSalt": "bjlSR4QqkXFBr7TP4oDzlfZmcNuH9YoS",
"PasswordResetSalt": "vZ4DcKyVVRlKHHJpexcuXzojkE5PZ5eL",
"ApplePushServer": "",
"ApplePushCertPublic": "",
"ApplePushCertPrivate": ""
"SendPushNotifications": false,
"PushNotificationServer": ""
},
"RateLimitSettings": {
"EnableRateLimiter": true,

Просмотреть файл