Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add docker setup for 5.4 and head/main #189

Merged
merged 1 commit into from
Feb 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions docker/docker-compose.al2.54.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: "3"

services:

runtime-setup:
image: swift-aws-lambda:al2-5.4
build:
args:
base_image: "swiftlang/swift:nightly-5.4-amazonlinux2"

test:
image: swift-aws-lambda:al2-5.4

test-samples:
image: swift-aws-lambda:al2-5.4

shell:
image: swift-aws-lambda:al2-5.4
18 changes: 18 additions & 0 deletions docker/docker-compose.al2.main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: "3"

services:

runtime-setup:
image: swift-aws-lambda:al2-main
build:
args:
base_image: "swiftlang/swift:nightly-main-amazonlinux2"

test:
image: swift-aws-lambda:al2-main

test-samples:
image: swift-aws-lambda:al2-main

shell:
image: swift-aws-lambda:al2-main
2 changes: 1 addition & 1 deletion docker/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# this file is not designed to be run directly
# instead, use the docker-compose.<os>.<swift> files
# eg docker-compose -f docker/docker-compose.yaml -f docker/docker-compose.1804.52.yaml run test
# eg docker-compose -f docker/docker-compose.yaml -f docker/docker-compose.al2.52.yaml run test
version: "3"

services:
Expand Down