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

docker-compose.yml 220 B

1年前
1年前
1234567891011121314151617
  1. version: "3"
  2. services:
  3. app:
  4. build: app
  5. restart: always
  6. depends_on:
  7. - "db"
  8. ports:
  9. - "5000:5000"
  10. db:
  11. image: mysql:8.0
  12. restart: always
  13. expose:
  14. - "3306"
  15. networks:
  16. deqnqe: