Skip to content
This repository was archived by the owner on Sep 23, 2021. It is now read-only.

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
hansehe committed May 18, 2018
1 parent e82307d commit ef1aa86
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 15 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,16 @@ The application makes it easy to manage a Docker Swarm by configuring a single *
2. Create a `swarm-management.yml` file describing all properties of the swarm.
- The `swarm-management.yml` file contains following properties:
- stacks: [ [`<compose_file>`, `<stack_name>`] ]
- networks: [ [`<network_name>`, true/false => encrypted (true) / non-encrypted (false)] ]
- networks: [ [`<network_name>`, `<true/false>` => encrypted (true) / non-encrypted (false)] ]
- configs: [ [`<config_file>`, `<config_name>`] ]
- secrets: [ [`<secret_file>`, `<secret_name>`] ]
- env_file: path_to/*.env
3. Start Swarm
- -> SwarmManagement start
- SwarmManagement uses the `swarm-management.yml` file by default to configure the swarm.
- Stop the swarm with:
3. Manage Swarm
- Start the Swarm with:
- -> SwarmManagement start
- Stop the Swarm with:
- -> SwarmManagement stop
- SwarmManagement uses the `swarm-management.yml` file by default to configure the swarm.
- Additional Info is found by asking SwarmManagement:
- -> SwarmManagement -help

Expand Down
11 changes: 6 additions & 5 deletions example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
- -> cd DockerSSLProxy
- -> python SSLKeyGenerator.py
- -> cd ..
3. Start Swarm
- -> SwarmManagement start
- SwarmManagement uses the swarm-management.yml file to configure the swarm.
- Stop the swarm with:
3. Manage Swarm
- Start the Swarm with:
- -> SwarmManagement start
- Stop the Swarm with:
- -> SwarmManagement stop
- SwarmManagement uses the `swarm-management.yml` file by default to configure the swarm.
- Additional Info is found by asking SwarmManagement:
- -> SwarmManagement -help
- -> SwarmManagement -help
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
# This includes the license file in the wheel.
license_file = LICENSE.txt
license_file = LICENSE

[bdist_wheel]
# This flag says to generate wheels that support both Python 2 and Python
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
# For a discussion on single-sourcing the version across setup.py and the
# project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='1.1.4', # Required
version='1.1.6', # Required

# This is a one-line description or tagline of what your project does. This
# corresponds to the "Summary" metadata field:
Expand Down Expand Up @@ -73,7 +73,7 @@
#
# This field corresponds to the "Home-Page" metadata field:
# https://packaging.python.org/specifications/core-metadata/#home-page-optional
url='https://github.com/pypa/sampleproject', # Optional
url='https://github.com/DIPSAS/SwarmManagement', # Optional

# This should be your name or the name of the organization which owns the
# project.
Expand All @@ -91,7 +91,7 @@
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',

# Indicate who your project is intended for
'Intended Audience :: Developers',
Expand Down Expand Up @@ -195,6 +195,6 @@
# 'Bug Reports': 'https://github.com/pypa/sampleproject/issues',
'Funding': 'https://donate.pypi.org',
'Say Thanks!': 'http://saythanks.io/to/example',
'Source': 'https://github.com/pypa/sampleproject/',
'Source': 'https://github.com/DIPSAS/SwarmManagement',
},
)

0 comments on commit ef1aa86

Please sign in to comment.