summaryrefslogtreecommitdiffstats
path: root/docker-api/src/test/resources/simple-ipv6-server
diff options
context:
space:
mode:
Diffstat (limited to 'docker-api/src/test/resources/simple-ipv6-server')
-rw-r--r--docker-api/src/test/resources/simple-ipv6-server/Dockerfile2
-rw-r--r--docker-api/src/test/resources/simple-ipv6-server/README2
-rw-r--r--docker-api/src/test/resources/simple-ipv6-server/src/fillmem.py4
-rw-r--r--docker-api/src/test/resources/simple-ipv6-server/src/server.py2
4 files changed, 6 insertions, 4 deletions
diff --git a/docker-api/src/test/resources/simple-ipv6-server/Dockerfile b/docker-api/src/test/resources/simple-ipv6-server/Dockerfile
index ee33894dbeb..0be39db54d8 100644
--- a/docker-api/src/test/resources/simple-ipv6-server/Dockerfile
+++ b/docker-api/src/test/resources/simple-ipv6-server/Dockerfile
@@ -1,4 +1,4 @@
-# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
FROM gliderlabs/alpine:3.4
diff --git a/docker-api/src/test/resources/simple-ipv6-server/README b/docker-api/src/test/resources/simple-ipv6-server/README
index 76a36bb4630..1b6e4c9dcea 100644
--- a/docker-api/src/test/resources/simple-ipv6-server/README
+++ b/docker-api/src/test/resources/simple-ipv6-server/README
@@ -1,3 +1,5 @@
+Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+
This is the source for a basic docker image that runs a python HTTP server listening at IPv6 port 80.
The server serves two basic paths:
/ip - returns IP address of the requester
diff --git a/docker-api/src/test/resources/simple-ipv6-server/src/fillmem.py b/docker-api/src/test/resources/simple-ipv6-server/src/fillmem.py
index b3990bea859..3edb0086f18 100644
--- a/docker-api/src/test/resources/simple-ipv6-server/src/fillmem.py
+++ b/docker-api/src/test/resources/simple-ipv6-server/src/fillmem.py
@@ -1,4 +1,4 @@
-# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
import sys
import time
@@ -8,4 +8,4 @@ data = megabyte * int(sys.argv[1])
while True:
time.sleep(1)
- data.extend(megabyte)
+ data.extend(megabyte) \ No newline at end of file
diff --git a/docker-api/src/test/resources/simple-ipv6-server/src/server.py b/docker-api/src/test/resources/simple-ipv6-server/src/server.py
index 9b4d543d4ed..c28c288bbca 100644
--- a/docker-api/src/test/resources/simple-ipv6-server/src/server.py
+++ b/docker-api/src/test/resources/simple-ipv6-server/src/server.py
@@ -1,4 +1,4 @@
-# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
import socket
from BaseHTTPServer import HTTPServer
from SimpleHTTPServer import SimpleHTTPRequestHandler