mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-16 04:35:25 +02:00
* 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>
24 lines
544 B
YAML
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: {}
|
|
|