@@ -0,0 +1,19 @@
+services:
+ omnisearch:
+ container_name: simosearch
+ build:
+ context: .
+ dockerfile: Dockerfile
+ restart: unless-stopped
+ networks:
+ - caddy
+ volumes:
+ - ./config.ini:/app/config.ini:ro
+ - omnisearch-cache:/app/cache
+
+volumes:
+ omnisearch-cache: {}
+networks:
+ caddy:
+ external: true