Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
version: "3.7"
services:
flask:
build:
context: webapp
ports:
- "5000:5000"
expose:
- 5000
volumes:
- "./webapp/xss_trainer:/opt/xss_trainer"
environment:
- FLASK_ENV=development
#- FLASK_APP=/opt/xss_trainer/app.py
- FLASK_APP=xss_trainer
selenoid:
image: cueh/selenoid
ports:
- "4444:4444"
cap_add:
- SYS_ADMIN
init: true #Need this otherwise we get millions of crhomes
# #Uncomment this for m3 Macs
# selenoid:
# build:
# context:
# SelenoidAlt
# ports:
# - "4444:4444"
# cap_add:
# - SYS_ADMIN
# init: true #Need this otherwise we get millions of crhomes
#We use Redis for the local session
redis:
image: redis