pr-bot

Docker (Production)

Installation

Use the published image luckyj/pr-notificator:latest (or a version like luckyj/pr-notificator:0.1.0). Building locally is not required.

Run with the default configuration and own credentials

docker run -d --name pr-notificator \
  --env-file .env.prod.local \
  -p 8080:80 \
  luckyj/pr-notificator:latest

Run with the custom configuration and credentials

docker run -d --name pr-notificator \
  -p 8080:80 \
  -v "$PWD/.env.prod:/app/.env.prod:ro" \
  -v "$PWD/.env.prod.local:/app/.env.prod.local:ro" \
  luckyj/pr-notificator:latest

Env file rules

Troubleshooting

Reference: dunglas/symfony-docker