docker-compose.yml 540 B

1234567891011121314151617181920212223
  1. services:
  2. ability-center:
  3. container_name: ability-center
  4. restart: always
  5. environment:
  6. SPRING_PROFILES_ACTIVE: ${SPRING_PROFILES_ACTIVE:-test}
  7. NODE_OPTIONS: --dns-result-order=ipv4first
  8. PLAYWRIGHT_BROWSERS_PATH: /ms-playwright
  9. PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: "1"
  10. build:
  11. context: ./runtime
  12. dockerfile: dockerfile
  13. volumes:
  14. - type: bind
  15. source: /data/project/ability-center
  16. target: /app
  17. bind:
  18. create_host_path: false
  19. network_mode: host