mirror of
https://github.com/trufflesecurity/xsshunter
synced 2024-11-10 06:44:13 +00:00
883039e6fa
* fix validation, docker user, and only use dependabot for security updates * vars
30 lines
741 B
YAML
30 lines
741 B
YAML
version: "3.9"
|
|
services:
|
|
# XSS Hunter Express service
|
|
xsshunterexpress:
|
|
build: .
|
|
env_file:
|
|
- dev.env
|
|
ports:
|
|
- "127.0.0.1:8080:8080"
|
|
volumes:
|
|
# Directory where payload fire images are stored.
|
|
- ./payload-fire-images:/app/payload-fire-images
|
|
depends_on:
|
|
postgresdb:
|
|
condition: service_healthy
|
|
postgresdb:
|
|
image: postgres
|
|
restart: always
|
|
env_file:
|
|
- dev.env
|
|
environment:
|
|
PGDATA: /var/lib/postgresql/data/pgdata
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U $$POSTGRES_USER"]
|
|
interval: 3s
|
|
timeout: 5s
|
|
retries: 5
|
|
volumes:
|
|
- ./postgres-db-data:/var/lib/postgresql/data/pgdata
|