docker-compose.yml 343 B

123456789101112131415161718192021
  1. version: '2'
  2. services:
  3. yidu_postgres:
  4. build:
  5. context: ./db
  6. ports:
  7. - "5432:5432"
  8. volumes:
  9. - ./db/data:/var/lib/postgresql/data
  10. yidu:
  11. build:
  12. context: ./yidu
  13. ports:
  14. - 80:8080
  15. volumes:
  16. - ./yidu/ROOT:/usr/local/tomcat/webapps/ROOT
  17. - ./yidu/yispider:/usr/local/spider