diff --git a/.gitignore b/.gitignore
index 7199499..166e3b9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,6 @@
-.ssh/
 id_rsa
 id_rsa.pub
+known_hosts
 files/
 data/
 .vscode/
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..33d9091
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,19 @@
+version: '3.7'
+
+services:
+
+    resourcepackupdater:
+        build: .
+        command: python /src/main.py
+        environment: 
+            - RESOURCE_PACK_URL=git@github.com:Pixel-Hideaway/ResourcePack.git
+        volumes: 
+            - ~/.ssh/:/root/.ssh:ro
+        env_file: 
+            - .env
+        ports: 
+            - 8080:8080
+        tty: true
+        stdin_open: true
+      
+