概要
CypressをWindows11で構築した時のメモ
環境
- Windows11
- WSL2(Ubuntu)
手順
- WSL2インストール
- WSLg確認
- Docker Desktop
- 起動
WSL2インストール
WSLのインストール詳細は割愛
WSLg確認
参考:https://blog.mohyo.net/2022/02/11591/
Docker Desktop
「Docker Desktop for Windows」をインストールしてWSLで実行するように設定
参考:https://docs.docker.com/desktop/windows/wsl/#develop-with-docker-and-wsl-2
起動
docker-compose.yml
version: '3'
services:
cypress:
image: cypress/included:10.3.1
environment:
- DISPLAY=:0
working_dir: /e2e
volumes:
- ./:/e2e
- /tmp/.X11-unix:/tmp/.X11-unix
- /mnt/wslg:/mnt/wslg
entrypoint: cypress open --project /e2e
参考
- WSLg
- Docker Desktop