Skip to content

Commit

Permalink
Merge 83014be into 635a5e4
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonlbarrow committed Oct 22, 2019
2 parents 635a5e4 + 83014be commit 01c4129
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -109,3 +109,5 @@ venv
.vscode/*

*.db

start.py
25 changes: 25 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
version: '3'
services:
pastepwn:
build:
context: .
env_file:
- .env
environment:
- HTTP_PROXY=${HTTP_PROXY}
- HTTPS_PROXY=${HTTPS_PROXY}
- NO_PROXY=${NO_PROXY}
- PATH_TO_START_PY=${PATH_TO_START_PY}
volumes:
- "${PATH_TO_START_PY}:/pastepwn/start.py:ro"
depends_on:
- db
links:
- db
db:
image: mysql
env_file:
- .env
ports:
- "3306:3306"

0 comments on commit 01c4129

Please sign in to comment.