diff --git a/openblocks/docker.compose.yml b/openblocks/docker.compose.yml new file mode 100644 index 0000000..a067516 --- /dev/null +++ b/openblocks/docker.compose.yml @@ -0,0 +1,19 @@ +services: + openblocks: + image: elestio4test/openblocks-ce:latest + container_name: Openblocks + hostname: openblocks + mem_limit: 8g + cpu_shares: 2048 + security_opt: + - no-new-privileges:true + healthcheck: + test: curl -f http://localhost:3000/ || exit 1 + ports: + - 8446:3000 + volumes: + - stacks:/openblocks-stacks:rw + restart: on-failure:5 + +volumes: + stacks: \ No newline at end of file