flask-restful-authentication icon indicating copy to clipboard operation
flask-restful-authentication copied to clipboard

docker Wont work

Open devcoinfet opened this issue 5 years ago • 1 comments

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 avatar Oct 16 '20 06:10 devcoinfet

@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

DMora42 avatar Sep 20 '23 20:09 DMora42