mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-02-12 16:12:44 +00:00
27 lines
521 B
YAML
27 lines
521 B
YAML
# PhishingClub Production Docker Compose
|
|
version: "3.8"
|
|
|
|
services:
|
|
phishingclub:
|
|
image: ghcr.io/phishingclub/phishingclub:latest
|
|
|
|
container_name: phishingclub
|
|
restart: unless-stopped
|
|
|
|
# Mount config and data directories
|
|
volumes:
|
|
- ./config:/app/config
|
|
- ./data:/app/data
|
|
|
|
ports:
|
|
- "80:8080" # HTTP phishing server
|
|
- "443:8443" # HTTPS phishing server
|
|
- "8000:8000" # Admin interface
|
|
|
|
networks:
|
|
- phishingclub
|
|
|
|
networks:
|
|
phishingclub:
|
|
driver: bridge
|