We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f8b4d8 commit ee9150cCopy full SHA for ee9150c
README.md
@@ -133,6 +133,9 @@ Pipeline successfully undeployed
133
134
## Docker setup
135
136
+> [!TIP]
137
+> If you have docker-compose installed and you want to quickly get up and running, just do `docker-compose up -d`
138
+
139
Instead of launching the server in a separate shell like we did in the Quick Start, you can run it in a Docker
140
container :
141
compose.yml
@@ -0,0 +1,13 @@
1
+services:
2
+ hayhooks:
3
+ image: deepset/hayhooks:main
4
+ container_name: hayhooks
5
+ ports:
6
+ - '1416:1416'
7
+ volumes:
8
+ - ./tests/test_files:/opt/pipelines
9
+ healthcheck:
10
+ test: ["CMD-SHELL", "curl --silent --fail localhost:1416/status || exit 1"]
11
+ interval: 10s
12
+ timeout: 10s
13
+ retries: 3
0 commit comments