cat docker-compose.yml

version: '3.4'
services:
  klvchen:
    image: python_django:19.03.0
    ports:
      - 8000:8000
    command:
      - /bin/bash 
      - -c 
      - |
        cd /app01 
        python manage.py runserver 0.0.0.0:8000
    volumes:
      - /iba/app01:/app01

相关文章:

  • 2021-08-27
  • 2021-12-12
  • 2021-08-29
  • 2018-07-12
  • 2021-08-12
  • 2021-07-01
  • 2022-02-23
  • 2021-08-23
猜你喜欢
  • 2021-07-19
  • 2022-02-10
  • 2022-12-23
  • 2022-02-20
  • 2022-12-23
  • 2021-11-01
相关资源
相似解决方案