Victoria Bialas
db256b5deb
clarified logging into a swarm manager to list nodes
...
Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
2017-02-14 16:56:16 -08:00
Misty Stanley-Jones
96338d0ea9
Merge pull request #1655 from scjane/patch-1
...
Update step_six.md
2017-02-14 11:57:13 -08:00
Misty Stanley-Jones
7b058997e7
small fix
2017-02-14 11:43:38 -08:00
Misty Stanley-Jones
e7300cf848
Merge pull request #1566 from mstanleyjones/1072_swarm_backup
...
Add info about backing up swarms
2017-02-14 11:37:59 -08:00
Misty Stanley-Jones
675ad92276
Overall edits
...
It's nice to be able to improve this content when we get a chance.
2017-02-14 11:33:06 -08:00
Misty Stanley-Jones
1346c7f56a
Merge pull request #1657 from mathieui/engine-commandline-markdown
...
Fix a markdown rendering issue
2017-02-14 11:03:11 -08:00
Brian Kaufman
34b5b993ca
Default docker log name is container ID
...
The default docker log name is the 12 character container ID, the sample test.conf setup above filters for Docker.* which will not pick anything up unless users start their containers with at "Docker" tag
2017-02-14 12:53:12 -05:00
mathieui
3e713f6359
Fix a markdown rendering issue
...
The first snippet for “Create a docker service with specific hostname” is not properly rendered in the official docs: https://docs.docker.com/engine/reference/commandline/service_create/#/create-a-docker-service-with-specific-hostname---hostname
2017-02-14 18:24:54 +01:00
scjane
cc1ddf3c6d
Update step_six.md
2017-02-14 17:29:30 +08:00
Misty Stanley-Jones
551b30f319
Add info about backing up swarms
...
A little reorganization and clean-up along the way
2017-02-13 17:19:45 -08:00
Misty Stanley-Jones
0b663b1042
Merge pull request #1616 from cliffwoolley/patch-1
...
Fix Markdown; no need to install curl twice
2017-02-13 16:49:43 -08:00
Misty Stanley-Jones
15980561e7
Merge pull request #1618 from cheuberg/patch-1
...
Fix markdown error
2017-02-13 16:48:51 -08:00
Misty Stanley-Jones
faa469f4b7
Merge pull request #1619 from hoatle/patch-1
...
fix typo: redploy => redeploy
2017-02-13 16:48:17 -08:00
Misty Stanley-Jones
99767cb51f
Merge pull request #1620 from shubheksha/patch-1
...
Fix minor typo in step_four.md
2017-02-13 16:47:15 -08:00
Misty Stanley-Jones
141c2696c7
Fix a typo
2017-02-13 12:59:16 -08:00
Shubheksha Jalan
5a82021e47
Update step_four.md
2017-02-13 13:11:12 +05:30
Hoat Le
10f0f30ed3
fix typo: redploy => redeploy
2017-02-13 08:44:39 +07:00
cheuberg
9298767020
Fix markdown error
...
Previous version did not render correctly.
2017-02-12 14:54:20 +02:00
Cliff Woolley
5ad417ad37
Fix Markdown; no need to install curl twice
2017-02-11 11:28:45 -08:00
Nilz11
c1e6b41b47
Update debian.md
...
Fix for command
2017-02-11 15:46:05 +01:00
Victoria Bialas
1f4fb56733
updated diagram to match Design provided colours and shapes
...
updated diagram to soften connectors in diagram to lighter grey
modified db boxes on diagram
Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
2017-02-10 17:49:47 -08:00
Misty Stanley-Jones
afef955a13
Linux installation improvements ( #1560 )
2017-02-10 11:31:50 -08:00
Pascal Andy
adf14bbba3
Fix and issue with CMD docker exec
...
docker exec $(docker ps --filter name=redis -q)
not docker exec $(docker ps --filter --name=redis -q)
Cheers!
2017-02-10 11:13:12 -05:00
John Mulhausen
d416168b31
Update index.md
2017-02-09 23:50:15 -08:00
Justyn Shull
c59f972f46
Update secrets.md - fix typo ( #1574 )
...
rottate -> rotate
2017-02-09 12:19:37 -08:00
Misty Stanley-Jones
63ca90797d
Merge pull request #1543 from ArcticSnowman/master
...
Update example for --syslog-address for unix path
2017-02-08 19:05:34 -08:00
Misty Stanley-Jones
45aa25c0c6
Merge pull request #1547 from jefferybradberry/patch-2
...
Update services.md
2017-02-08 19:04:49 -08:00
Avi Miller
644ee5f294
Remove Oracle Linux issues
...
Neither of the documented issues are still an issue on current versions of Docker on Oracle Linux.
2017-02-09 13:44:02 +11:00
Sravan S
8b8c8e2d0c
Update repository setup step for Linux Mint users ( #1537 )
...
* Update repository setup step for Linux Mint users
Add a note to remind people using distributions derived from Ubuntu(Linux Mint)
to change the ubuntu-$(lsb_release -cs) part to their parent Ubuntu release.
The output of $(lsb_release -cs) won't necessarily be a stable Ubuntu release, it would
sometimes be something like 'rafaelia' and there could be problems in the installation
2017-02-08 17:01:27 -08:00
Abhishek Kandoi
f6e3e14e84
Fix typo ( #1557 )
...
Change intall to install
2017-02-08 13:26:41 -08:00
Victor Vieux
80fa030ffd
bump engine API to 1.26 ( #1553 )
...
Signed-off-by: Victor Vieux <victorvieux@gmail.com>
2017-02-08 13:18:24 -08:00
Jeffery Bradberry
a9da7672a5
Update services.md
2017-02-07 14:14:05 -05:00
Steven Arnott
7823e98796
Update example for --syslog-address for unix path
...
Update example for --syslog-address for unix path to include 'unix:' protocol that is needed.
2017-02-07 12:54:14 -05:00
Ryan Sanford
d91cab01bc
Fix base image creation example commands ( #1409 )
...
Example commands for creating a base image do not work due to multiple issues.
- 16:04 not a valid tag for ubuntu image
- apt-get install fails without preceeding `apt-get update`
- gcc command fails without `-nostartfiles` flag
- `docker run` without the `--rm` leaves behind containers which is unintuitive, and inconsistent with the build image used above.
2017-02-07 09:52:31 -08:00
Misty Stanley-Jones
9420f4cc89
Merge pull request #1429 from Mic92/patch-1
...
zfs: fixed assumptions about thin provisioning
2017-02-07 09:50:07 -08:00
Sivakumar Raja
a0009fbada
Corrected a typo and error in docker start command ( #1508 )
...
* Corrected a typo in Fedora install instructions
* Removed the change on docker start command.
Changed the command from `sudo systemctl start docker` to `sudo systemctl docker start` as it was addressed on other PR, so leaving it to the original one.
2017-02-07 09:38:22 -08:00
Misty Stanley-Jones
ef2c5002ca
Merge pull request #1375 from vikstrous/patch-1
...
remove reference to overlay2 as a filesystem
2017-02-06 17:13:05 -08:00
Misty Stanley-Jones
6ed0295440
Merge pull request #1382 from dmonroy/patch-1
...
update sample output regarding package version information
2017-02-06 17:12:11 -08:00
Misty Stanley-Jones
b8525d459d
Merge pull request #1386 from alexlist/patch-1
...
software-properties-common is required for add-apt-repository
2017-02-06 17:11:15 -08:00
tradfor
4d01901e7c
Added a new remove unofficial docker step ( #1468 )
...
* Added a new remove unofficial docker step
2017-02-06 17:01:44 -08:00
huangsen365
76461f517e
Update centos.md ( #1523 )
...
* Update CentOS, RHEL, Fedora instructions for starting Docker
2017-02-06 16:55:29 -08:00
Joao Fernandes
8eddd3f80f
Merge pull request #1526 from aboch/esp
...
Fix docs about what protocol must be allowed for network encryption
2017-02-06 14:24:16 -08:00
Alessandro Boch
649210111a
Fix docs about what protocol must be allowed for network encryption
...
- This was inadvertently changed to `port`
Signed-off-by: Alessandro Boch <aboch@docker.com>
2017-02-06 10:04:31 -08:00
Adam Eijdenberg
9d2b5f32bb
Add documentation around pipefail to address issue 1459 ( #1460 )
...
* Add documentation around pipefail to address issue 1459
Signed-off-by: Adam Eijdenberg <adam.eijdenberg@gmail.com>
2017-02-06 09:52:19 -08:00
Victoria Bialas
11363d7582
Merge pull request #1475 from docker/londoncalling-patch-3-1
...
add a link to the voting app sample
2017-02-03 16:49:27 -08:00
Victoria Bialas
49d3957e47
Update last_page.md
2017-02-03 14:30:37 -08:00
Misty Stanley-Jones
811aa5d54a
Merge pull request #1437 from onelovelyname/patch-1
...
Add instructions for manual start of Docker daemon
2017-02-03 13:49:22 -08:00
Melanie Gin
752d79f3ee
Add instructions for manual start of Docker daemon
2017-02-03 13:37:25 -08:00
Misty Stanley-Jones
f46129b40c
Merge pull request #1449 from Rick-Anderson/patch-3
...
Update faq.md
2017-02-03 11:13:22 -08:00
Daniel Suo
9e5e14f0e6
Add link to C SDK
2017-02-03 11:17:46 -05:00