TapIt - SMS Phishing Framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

27 lines
642 B

version: '3'
services:
#######################################
# TapIt Application
#######################################
app:
build:
context: ./tapit-build/
dockerfile: Dockerfile
ports:
- "127.0.0.1:8000:8000"
- "127.0.0.1:8001:8001"
restart: always
#######################################
# Postgres server
#######################################
postgres-tapit:
image: postgres
restart: always
volumes:
- ./postgres-data:/var/lib/postgresql/data
environment:
- POSTGRES_USER=tapit
- POSTGRES_PASSWORD=secret-tapit-password
- POSTGRES_DB=tapit