the cypress image is pre-built with 2 tests that run against openproject's front-end
104
the compose file that this image was tested with :
version: '3' services: openproject: image: openproject/community:13 ports: - "8080:80" environment: - OPENPROJECT_SECRET_KEY_BASE=12345 - OPENPROJECT_HOST__NAME=openproject - OPENPROJECT_HTTPS=false - OPENPROJECT_DEFAULT__LANGUAGE=en - OPENPROJECT_SEED_ADMIN_USER_PASSWORD_RESET=false cypress: image: cypressopenprojectdemo:0.0.1 command: --spec cypress/tests/*.ts depends_on: - openproject restart: unless-stopped ports: - "3000:3000"
Using unless-stopped for cypress because depends-on doesnt really much do the job. so once you see / check the results, manually stop the cypress container.
Content type
Image
Digest
sha256:fd443adb5…
Size
1.2 GB
Last updated
almost 3 years ago
docker pull borispxd/openprojectwithcypress:v0.1