mermaid/docker-compose.yml

40 lines
775 B
YAML
Raw Normal View History

version: '3.9'
services:
mermaid:
build:
context: .
dockerfile: Dockerfile
stdin_open: true
tty: true
working_dir: /mermaid
mem_limit: '8G'
entrypoint: docker-entrypoint.sh
environment:
- NODE_OPTIONS=--max_old_space_size=8192
volumes:
- ./:/mermaid
2023-06-18 00:32:45 +02:00
- root_cache:/root/.cache
- root_local:/root/.local
2023-06-24 20:37:19 +02:00
- root_npm:/root/.npm
2023-06-18 00:32:45 +02:00
ports:
- 9000:9000
- 3333:3333
cypress:
image: cypress/included:13.7.3
stdin_open: true
tty: true
working_dir: /mermaid
mem_limit: '2G'
entrypoint: cypress
environment:
- DISPLAY
volumes:
- ./:/mermaid
- /tmp/.X11-unix:/tmp/.X11-unix
network_mode: host
2023-06-18 00:32:45 +02:00
volumes:
root_cache:
root_local:
2023-06-18 00:32:45 +02:00
root_npm: