diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..e734a49
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,7 @@
+Copyright (c) 2023 Zakary Timson
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/README.md b/README.md
index e69de29..55767d7 100644
--- a/README.md
+++ b/README.md
@@ -0,0 +1,144 @@
+
+
+
+
+
+

+
+
+### ztimson/caddy-labels
+
+
+Caddy with Docker Label Support, Cloudflare & Route53
+
+
+[](https://git.zakscode.com/ztimson/caddy-labels/tags)
+[](https://git.zakscode.com/ztimson/caddy-labels/pulls)
+[](https://git.zakscode.com/ztimson/caddy-labels/issues)
+
+
+
+## Table of Contents
+- [ztimson/caddy-labels](#top)
+ - [About](#about)
+ - [Built With](#built-with)
+ - [Setup](#setup)
+ - [Production](#production)
+ - [Development](#development)
+ - [License](#license)
+
+## About
+
+Caddy with docker label support, Cloudflare & Route53
+ - [AWS Route53](https://github.com/caddy-dns/route53)
+ - [Cloudflare](https://github.com/caddy-dns/cloudflare)
+ - [caddy-docker-proxy](github.com/lucaslorentz/caddy-docker-proxy)
+
+This image will inspect container labels & translate them into a caddy config like so:
+```yml
+services:
+ server:
+ ...
+ networks:
+ - proxy_network
+ deploy:
+ labels:
+ - caddy: '*.example.com' # *.example.com {
+ - caddy.reverse_proxy: {{upstreams 80}} # revere_proxy :80
+ - caddy.tls.dns: cloudflare # tls { dns cloudflare }
+ # }
+```
+
+Other useful patterns:
+```yml
+# Load-balance sockets
+caddy.reverse_proxy.lb_policy: client_ip_hash
+# Multiple domains
+caddy: a.example.com b.example.com
+caddy.@match0.host: a.example.com
+caddy.@match1.host: b.example.com
+caddy.0_reverse_proxy: '@match0 {{upstreams 80}}'
+caddy.1_reverse_proxy: '@match1 {{upstreams 81}}'
+# Whitelist network
+caddy.@local.remote_ip: '192.168.0.0/24'
+caddy.handle: '@local'
+caddy.handle.reverse_proxy: '{{upstreams 3000}}'
+```
+
+See [caddy-docker-proxy](github.com/lucaslorentz/caddy-docker-proxy) for more information
+
+### Built With
+[](https://docker.com/)
+
+## Setup
+
+
+
+
+ Production
+
+
+
+#### Prerequisites
+- [Docker](https://docs.docker.com/get-started/get-docker/)
+
+#### Instructions
+1. Create a compose file:
+```yml
+services:
+ caddy:
+ image: ztimson/caddy-labels:latest
+ environment:
+ CADDY_INGRESS_NETWORKS: proxy_network
+ TZ: America/Toronto
+ ports:
+ - 80:80
+ - 443:443
+ volumes:
+ - data:/data/caddy
+ - /var/run/docker.sock:/var/run/docker.sock
+ networks:
+ - proxy_network
+ deploy:
+ mode: global
+ labels:
+ caddy.email: example@example.com
+ # Cloudflare
+ caddy.acme_dns: 'cloudflare TOKEN'
+ # OR Route53
+ caddy.acme_dns: route53
+ caddy.acme_dns.region: 'us-east-1'
+ caddy.acme_dns.access_key_id: 'TOKEN'
+ caddy.acme_dns.secret_access_key: 'TOKEN'
+
+networks:
+ proxy_network:
+
+volumes:
+ data:
+```
+2. Deploy: `docker compose up`
+
+
+
+
+
+
+ Development
+
+
+
+#### Prerequisites
+- [Docker](https://docs.docker.com/get-started/get-docker/)
+
+#### Instructions
+1. Update desired version number in Dockerfile
+2. Build docker image: `docekr build -t ztimson/caddy-labels:latest .`
+
+
+
+## License
+
+Copyright © 2023 Zakary Timson | Available under MIT Licensing
+
+See the [license](LICENSE) for more information.