diff --git a/.drone.yml b/.drone.yml
new file mode 100644
index 0000000000000000000000000000000000000000..b8b5b8745f2abec7ee3672a86395e73ecfaad83b
--- /dev/null
+++ b/.drone.yml
@@ -0,0 +1,31 @@
+---
+kind: pipeline
+type: docker
+name: nginx
+
+platform:
+  os: windows
+  arch: amd64
+
+volumes:
+  - name: docker_pipe
+    host:
+      path: \\\\.\\pipe\\docker_engine
+
+steps:
+
+- name: build_image
+  image: plugins/docker:windows-1909-amd64
+  settings:
+    repo: registry.xenonpk.online/nginx-demo
+    registry: registry.xenonpk.online
+    context: runners/windows
+    tags:
+      - windows-latest
+      - windows
+      - latest
+  volumes:
+    - name: docker_pipe
+      path: \\\\.\\pipe\\docker_engine
+
+...