-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
52 lines (48 loc) · 1.4 KB
/
docker-compose.yml
File metadata and controls
52 lines (48 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# BugPin - Self-hosted Bug Reporting & Feedback Widget
# https://github.com/aranticlabs/bugpin
#
# Quick start:
# docker compose up -d
#
# Access: http://localhost:7300
# Default login: admin@example.com / changeme123
# Change password after first login!
#
# Update:
# docker compose pull && docker compose up -d
services:
bugpin:
image: registry.arantic.cloud/bugpin/bugpin:latest
container_name: bugpin
restart: unless-stopped
ports:
- "7300:7300"
volumes:
- ./data:/data
# Alternative: use named volume
# - bugpin-data:/data
environment:
# Set to "debug" for verbose logging (default: info)
- LOG_LEVEL=info
healthcheck:
test: ["CMD", "wget", "-q", "-O", "/dev/null", "http://localhost:7300/health"]
interval: 30s
timeout: 3s
retries: 3
start_period: 10s
# Traefik reverse proxy example (uncomment to use)
# labels:
# - "traefik.enable=true"
# - "traefik.http.routers.bugpin.rule=Host(`bugpin.yourdomain.com`)"
# - "traefik.http.routers.bugpin.entrypoints=websecure"
# - "traefik.http.routers.bugpin.tls.certresolver=letsencrypt"
# - "traefik.http.services.bugpin.loadbalancer.server.port=7300"
# networks:
# - traefik
# Uncomment if using Traefik or external network
# networks:
# traefik:
# external: true
# Uncomment if using named volumes
# volumes:
# bugpin-data: