Files
templates/blueprints/parseable/docker-compose.yml
Nick Anderson c0ff3ca788 Feat: Add parseable (#460)
* Add parseable

* Update docker-compose.yml

* Update docker-compose.yml

* Update blueprints/parseable/template.toml

---------

Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
Co-authored-by: Mauricio Siu <siumauricio@icloud.com>
2025-12-14 00:01:17 -06:00

24 lines
544 B
YAML

version: "3.8"
services:
parseable:
image: parseable/parseable:v1.6.0
command: parseable local-store
restart: unless-stopped
volumes:
- parseable-staging:/parseable/staging
- parseable-data:/parseable/data
environment:
- P_ADDR=0.0.0.0:8000
- P_USERNAME=${PARSEABLE_USERNAME}
- P_PASSWORD=${PARSEABLE_PASSWORD}
- P_STAGING_DIR=/parseable/staging
- P_FS_DIR=/parseable/data
ports:
- 8000
- 8001
- 8002
volumes:
parseable-staging: {}
parseable-data: {}