flask-restful-authentication
flask-restful-authentication copied to clipboard
docker Wont work
The docker container portion of this builds and following your instructions this happens
Internal Server Error no other details can be provided as i do not know docker but building on kali and just following your instructions it doesn't just work
@devcoinfet
version: "3"
services:
app:
build: .
links:
- mongo:mongo
volumes:
- ./app:/root/app
- /tmp:/tmp
environment:
- MAIL_SERVER
- MAIL_USERNAME
- MAIL_PASSWORD
nginx:
image: nginx
volumes:
- ./nginx/nginx.conf:/etc/nginx/nginx.conf
- ./nginx/log:/var/log/nginx
- ./app:/root/app
- /tmp:/tmp
ports:
- "80:80"
mongo:
image: mongo
volumes:
- ./mongo:/data/db
ports:
- 27017:27018