Use Docker + Kitura, but not on a Mac

375 Views Asked by At

I have a perfectly fine Swift-Docker-Kitura project on a Mac ...

enter image description here

You work on the code using Xcode, and then in terminal you docker build. It builds. You docker run and you can even see the web page locally on localhost. You can then docker push and it goes to the main AWS cloud and is hosted.

That's all great.

But what if I want to use Swift-Docker-Kitura "not on a Mac"?

Can you "build" and "push" such a swift project - on some sort of shell on AWS (or a similar service)?

2

There are 2 best solutions below

4
On BEST ANSWER

Your options are limited. First of all Swift is only certified at this moment on Ubuntu. So the host you want to develop on either must run Ubuntu or alternatively must run Docker under which you can run Ubuntu.

In theory you can also compile swift on your target host. I did this for an older version of Swift once for Debain (Jessie) and although I managed to get it compiled it was certainly not stable. Things may have improved since then, I haven't checked that.

So the easiest way is to rely on Docker. This also allows you to still develop on your mac by editing in Xcode and then on the command line you have the options to compile it manually.

I use the following bash function to open my Linux environment:

SwiftDocker2 ()
{
    name=`perl -e 'open IN, "</usr/share/dict/words";rand($.) \
        < 1 && ($n=$_) while <IN>;print $n'`;
    docker run -i -t --name=${name} -h ${name} --log-driver=json-file \
        -w /project -v $(pwd):/project -p 9000:9000 ibmcom/swift-ubuntu /bin/bash;
    echo "Created image ${name}";
    echo "Stopping image";
    docker stop ${name};
    echo "Removing image";
    docker rm ${name}
}

In the above example I open port 9000 which may not be required by your application.

The last point I would like to make is the use of the build directory. I use a Makefile to do the build and in the Makefile I have the following section:

BUILD_LINUX = "./.build-linux"
BUILD_MACOS = "./.build-macos"
UNAME = $(shell uname)

ifeq (${UNAME}, Darwin)
BUILD_PATH = ${BUILD_MACOS}
else
BUILD_PATH = ${BUILD_LINUX}
endif

xcode:
    @swift package --build-path ${BUILD_PATH} -Xlinker -L/usr/local/lib generate-xcodeproj

build:
    rm -f Package.pins
    swift build --build-path ${BUILD_PATH} -Xlinker "-L/usr/local/lib"

By using this construction the MacOS environment will use the directory .build-macos for the build and Linux will use the file .build-Linux. The file Package.pins is removed during build to ensure that some memory about versions to use is not transferred between the two environments.

2
On

There are multiple options to build and run Kitura web applications, though not all of the options are officially supported.

  1. Run it from an Xcode project on Mac, build in Xcode.
  2. Run it in the command line on Mac, build using swift build.
  3. Run it in the command line on Ubuntu, build using swift build.
  4. Run it on a cloud that supports Cloud Foundry buildpacks. See https://github.com/IBM-Swift/swift-buildpack. For example, on IBM Bluemix, see https://console.bluemix.net/catalog/starters/runtime-for-swift.
  5. Run it in an Ubuntu docker, see http://www.kitura.io/en/starter/leveragedocker.html, on any platform that supports docker.
  6. Create a docker image with the Kitura application code (see https://github.com/IBM-Swift/swift-ubuntu-docker#using-ibmcomswift-ubuntu-runtime) and push it to any cloud that supports executing docker images. For example, IBM Bluemix Kubernetes Cluster https://console.bluemix.net/containers-kubernetes/catalogCluster.
  7. You can even embed it in an iOS application, see https://developer.ibm.com/swift/2017/03/13/kitura-ios/.
  8. And you can run it on a mainframe, see https://developer.ibm.com/swift/2017/10/05/swift-zos-swift-4-0-beta-update/.

From iPhone to mainframe, on Mac, Ubuntu, Docker and various cloud providers, these are the options to run Kitura.

Disclaimer: I work in IBM. As of the day of this edit (December 28-th 2017), to my best knowledge, Kitura is supported by IBM only in the environments described here https://developer.ibm.com/swift/2017/10/30/commercial-support/.