From d35c89695400fee9cac2664f5a3b4f21a659aaa7 Mon Sep 17 00:00:00 2001 From: BroodjeAap Date: Sun, 8 Jan 2023 09:59:19 +0000 Subject: [PATCH] added most basic compose example file --- docs/compose/gowatch.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 docs/compose/gowatch.yml diff --git a/docs/compose/gowatch.yml b/docs/compose/gowatch.yml new file mode 100644 index 0000000..10e3e37 --- /dev/null +++ b/docs/compose/gowatch.yml @@ -0,0 +1,10 @@ +version: "3" + +services: + app: + image: ghcr.io/broodjeaap/go-watch:latest + container_name: go-watch + volumes: + - ./:/config + ports: + - "8080:8080" \ No newline at end of file