Swift
@@ -0,0 +1,6 @@
+Maintainers: Haris Amin <[email protected]> (@hamin),
+ Thomas Catterall <[email protected]> (@swizzlr)
+GitRepo: https://github.com/swiftdocker/docker-swift.git
+
+Tags: 3.0.2, 3.0, 3, latest
+GitCommit: 94a43272fe6411c12045414cfc797d3c0bcf2823
@@ -175,6 +175,9 @@ imageTests+=(
[silverpeas]='
silverpeas-basics
'
+ [swift]='
+ swift-hello-world
+ '
[tomcat]='
tomcat-hello-world
@@ -0,0 +1,7 @@
+#!/bin/bash
+set -e
+testDir="$(readlink -f "$(dirname "$BASH_SOURCE")")"
+runDir="$(dirname "$(readlink -f "$BASH_SOURCE")")"
+source "$runDir/run-in-container.sh" "$testDir" "$1" swift ./container.swift
@@ -0,0 +1 @@
+print("Hello, world!")
+Hello, world!
+../run-swift-in-container.sh