選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

19 行
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