mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-07-12 19:45:56 +00:00
22 lines
527 B
YAML
22 lines
527 B
YAML
![]() |
services:
|
||
|
singlestore:
|
||
|
container_name: "singlestore"
|
||
|
image: ghcr.io/singlestore-labs/singlestoredb-dev:latest
|
||
|
platform: linux/amd64
|
||
|
ports:
|
||
|
- 3306:3306
|
||
|
- 8080:8080
|
||
|
- 9000:9000
|
||
|
environment:
|
||
|
- ROOT_PASSWORD=password
|
||
|
volumes:
|
||
|
- ./schema.sql:/init.sql
|
||
|
|
||
|
# Allow docker compose up --wait to exit only when singlestore is healthy
|
||
|
wait:
|
||
|
image: hello-world:latest
|
||
|
container_name: singlestore-waiter
|
||
|
depends_on:
|
||
|
singlestore:
|
||
|
condition: service_healthy
|