您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

27 行
473B

  1. services:
  2. web:
  3. build: ./web
  4. container_name: python
  5. restart: unless-stopped
  6. ports:
  7. - "5000:5000"
  8. volumes:
  9. - ./web:/code
  10. env_file:
  11. - ./.env.dev
  12. depends_on:
  13. - db
  14. db:
  15. image: mariadb:latest
  16. container_name: mariadb
  17. restart: unless-stopped
  18. env_file:
  19. - ./.env.dev
  20. volumes:
  21. - dbdata:/var/lib/mysql
  22. command: '--default-authentication-plugin=mysql_native_password'
  23. volumes:
  24. dbdata: