commit c9ef79d2c8e0d2dfac44d71f9f3ac9e6af74204d Author: stephane.david Date: Tue Dec 23 20:26:32 2025 +0100 First version diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..a9a7dc7 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,15 @@ +services: + itsmytabs: + image: louislam/its-mytabs:1 + container_name: MyTabs + healthcheck: + test: timeout 10s bash -c ':> /dev/tcp/127.0.0.1/47777' || exit 1 + interval: 10s + timeout: 5s + retries: 3 + start_period: 90s + ports: + - 47777:47777 + volumes: + - /var/lib/docker/volumes/mytabs:/app/data:rw + restart: always \ No newline at end of file