Add 0502 example
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
# On branch master
# Your branch is up-to-date with 'origin/master'.
#
# Changes to be committed:
#	new file:   ../0502/docker-compose.yml
#
# ------------------------ >8 ------------------------
# Do not touch the line above.
# Everything below will be removed.
diff --git a/05 - Logging/0502/docker-compose.yml b/05 - Logging/0502/docker-compose.yml
new file mode 100644
index 0000000..15b368d
--- /dev/null
+++ b/05 - Logging/0502/docker-compose.yml
@@ -0,0 +1,9 @@
+version: '2'
+services:
+  worker:
+    image: tutum/hello-world
+    command: sh -c 'while true; do echo test; done'
+    logging:
+      driver: syslog
+      options:
+        syslog-address: "udp://<replace with your own endpoint:port combo>"
