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.
 
 
 
 
 
 

19 line
403 B

  1. version: '3'
  2. services:
  3. web:
  4. build: .
  5. working_dir: /app
  6. command: >
  7. bash -c "python manage.py migrate
  8. && python3 manage.py collectstatic --noinput
  9. && gunicorn pinry.wsgi:application -b 0.0.0.0:8000 --timeout 30"
  10. ports:
  11. - "127.0.0.1:2048:8000"
  12. environment:
  13. - SECRET_KEY=CHANGE-ME
  14. user: ${CURRENT_UID}
  15. volumes:
  16. - .:/app
  17. restart: always