Swizzlr пре 8 година
родитељ
комит
0ae8e1438b
4 измењених фајлова са 55 додато и 8 уклоњено
  1. 1 7
      swift/LICENSE.md
  2. 1 1
      swift/README-short.txt
  3. 53 0
      swift/content.md
  4. BIN
      swift/logo.png

+ 1 - 7
swift/LICENSE.md

@@ -1,7 +1 @@
-Copyright (C) 2017 by Swiftdocker maintainers/contributors
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+View [license information](https://swift.org/LICENSE.txt) for the software contained in this image.

+ 1 - 1
swift/README-short.txt

@@ -1 +1 @@
-Swift is a general-purpose programming language using a modern approach to safety and performance. 
+Swift is a general-purpose programming language using a modern approach to safety and performance.

+ 53 - 0
swift/content.md

@@ -0,0 +1,53 @@
+# What is Swift?
+
+Swift is a general-purpose programming language built using a modern approach to safety, performance, and software design patterns.
+
+The goal of the Swift project is to create the best available language for uses ranging from systems programming, to mobile and desktop apps, scaling up to cloud services. Most importantly, Swift is designed to make writing and maintaining correct programs easier for the developer. To achieve this goal, we believe that the most obvious way to write Swift code must also be:
+
+**Safe**. The most obvious way to write code should also behave in a safe manner. Undefined behavior is the enemy of safety, and developer mistakes should be caught before software is in production. Opting for safety sometimes means Swift will feel strict, but we believe that clarity saves time in the long run.
+
+**Fast**. Swift is intended as a replacement for C-based languages (C, C++, and Objective-C). As such, Swift must be comparable to those languages in performance for most tasks. Performance must also be predictable and consistent, not just fast in short bursts that require clean-up later. There are lots of languages with novel features — being fast is rare.
+
+**Expressive**. Swift benefits from decades of advancement in computer science to offer syntax that is a joy to use, with modern features developers expect. But Swift is never done. We will monitor language advancements and embrace what works, continually evolving to make Swift even better.
+
+> [wikipedia.org/wiki/Swift_(programming_language)](https://en.wikipedia.org/wiki/Swift_(programming_language))
+> [swift.org](https://swift.org/about/)
+> [Swift on Github](https://github.com/apple/swift)
+
+%%LOGO%%
+
+# How to use this image
+
+##### Pull the Docker Image From Docker Hub:
+
+```bash
+docker pull swiftdocker/swift
+```
+
+##### Create a Container from the Image and Attach It:
+
+```bash
+docker run  -it --name swiftfun swiftdocker/swift:latest /bin/bash
+```
+
+##### To Start and Attach Your Image Later:
+
+Start your image with name `swiftfun`
+
+```bash
+docker start swiftfun
+```
+
+and then attach it
+
+```bash
+docker attach swiftfun
+```
+
+## Contributions
+
+Contributions via pull requests are welcome and encouraged :)
+
+## License
+
+docker-swift is licensed under the [MIT License.](LICENSE.md)