Browse code

Rename a few docker to moby

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Vincent Demeester authored on 2017/10/25 20:56:12
Showing 4 changed files
... ...
@@ -10,19 +10,25 @@ information within 7 days, we cannot debug your issue and will close it. We
10 10
 will, however, reopen it if you later provide the information.
11 11
 
12 12
 For more information about reporting issues, see
13
-https://github.com/docker/docker/blob/master/CONTRIBUTING.md#reporting-other-issues
13
+https://github.com/moby/moby/blob/master/CONTRIBUTING.md#reporting-other-issues
14 14
 
15 15
 ---------------------------------------------------
16 16
 GENERAL SUPPORT INFORMATION
17 17
 ---------------------------------------------------
18 18
 
19 19
 The GitHub issue tracker is for bug reports and feature requests.
20
-General support can be found at the following locations:
20
+General support for **docker** can be found at the following locations:
21 21
 
22 22
 - Docker Support Forums - https://forums.docker.com
23
-- IRC - irc.freenode.net #docker channel
23
+- Slack - community.docker.com #general channel
24 24
 - Post a question on StackOverflow, using the Docker tag
25 25
 
26
+General support for **moby** can be found at the following locations:
27
+
28
+- Moby Project Forums - https://forums.mobyproject.org
29
+- Slack - community.docker.com #moby-project channel
30
+- Post a question on StackOverflow, using the Moby tag
31
+
26 32
 ---------------------------------------------------
27 33
 BUG REPORT INFORMATION
28 34
 ---------------------------------------------------
... ...
@@ -1,6 +1,6 @@
1 1
 <!--
2 2
 Please make sure you've read and understood our contributing guidelines;
3
-https://github.com/docker/docker/blob/master/CONTRIBUTING.md
3
+https://github.com/moby/moby/blob/master/CONTRIBUTING.md
4 4
 
5 5
 ** Make sure all your commits include a signature generated with `git commit -s` **
6 6
 
... ...
@@ -1,4 +1,4 @@
1
-# Docker maintainers file
1
+# Moby maintainers file
2 2
 #
3 3
 # This file describes who runs the docker/docker project and how.
4 4
 # This is a living document - if you see something out of date or missing, speak up!
... ...
@@ -1,8 +1,8 @@
1
-pkg/ is a collection of utility packages used by the Docker project without being specific to its internals.
1
+pkg/ is a collection of utility packages used by the Moby project without being specific to its internals.
2 2
 
3
-Utility packages are kept separate from the docker core codebase to keep it as small and concise as possible.
3
+Utility packages are kept separate from the moby core codebase to keep it as small and concise as possible.
4 4
 If some utilities grow larger and their APIs stabilize, they may be moved to their own repository under the
5
-Docker organization, to facilitate re-use by other projects. However that is not the priority.
5
+Moby organization, to facilitate re-use by other projects. However that is not the priority.
6 6
 
7 7
 The directory `pkg` is named after the same directory in the camlistore project. Since Brad is a core
8 8
 Go maintainer, we thought it made sense to copy his methods for organizing Go code :) Thanks Brad!