| 1234567891011121314151617181920212223 |
- services:
- ability-center:
- container_name: ability-center
- restart: always
- environment:
- SPRING_PROFILES_ACTIVE: ${SPRING_PROFILES_ACTIVE:-test}
- NODE_OPTIONS: --dns-result-order=ipv4first
- PLAYWRIGHT_BROWSERS_PATH: /ms-playwright
- PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: "1"
- build:
- context: ./runtime
- dockerfile: dockerfile
- volumes:
- - type: bind
- source: /data/project/ability-center
- target: /app
- bind:
- create_host_path: false
- network_mode: host
|