Skip to content

Commit

Permalink
Fix paths in .ci/compose.yml (#9552)
Browse files Browse the repository at this point in the history
A mishap from moving the file.
  • Loading branch information
pabzm authored Jul 22, 2024
1 parent 8509470 commit 456703a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .ci/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
image: docker.io/selenium/standalone-chromium
volumes:
- '/dev/shm:/dev/shm'
- './Browser/downloads:/downloads'
- '../tests/Browser/downloads:/downloads'

browser_tests:
depends_on:
Expand All @@ -15,13 +15,13 @@ services:
image: ghcr.io/roundcube/roundcubemail-testrunner:php8.3
volumes:
- '..:/app'
- './Browser/downloads:/downloads'
- '../tests/Browser/downloads:/downloads'
environment:
WEBDRIVER_CONNECT_URL: 'http://browserhost:4444'
SERVER_URL: 'http://testrunner:8000'
SERVER_BIND: '0.0.0.0:8000'
BROWSER_DOWNLOADS_DIR: '/downloads'
TESTRUNNER_DOWNLOADS_DIR: './Browser/downloads'
TESTRUNNER_DOWNLOADS_DIR: '../tests/Browser/downloads'
RC_CONFIG_IMAP_HOST: 'tls://mailhost:3143'
RC_CONFIG_SMTP_HOST: 'mailhost:3025'
command:
Expand Down

0 comments on commit 456703a

Please sign in to comment.