--- datasets: - name: WebDS license: mit task_categories: - web-automation - multi-hop-reasoning language: - en size_categories: - 10K:7770`. ### E-commerce Content Management System (CMS) from webarena Download the image tar from the following mirrors: - https://drive.google.com/file/d/1See0ZhJRw0WTTL9y8hFlgaduwPZ_nGfd/view?usp=sharing - https://archive.org/download/webarena-env-shopping-admin-image - http://metis.lti.cs.cmu.edu/webarena-images/shopping_admin_final_0719.tar ``` docker load --input shopping_admin_final_0719.tar docker run --name shopping_admin -p 7780:80 -d shopping_admin_final_0719 # wait ~1 min to wait all services to start docker exec shopping_admin /var/www/magento2/bin/magento setup:store-config:set --base-url="http://:7780" # no trailing slash docker exec shopping_admin mysql -u magentouser -pMyPassword magentodb -e 'UPDATE core_config_data SET value="http://:7780/" WHERE path = "web/secure/base_url";' docker exec shopping_admin /var/www/magento2/bin/magento cache:flush ``` Now you can visit `http://:7780/admin`. ### Social Forum Website (Reddit) Download the image tar from the following mirrors: - https://drive.google.com/file/d/17Qpp1iu_mPqzgO_73Z9BnFjHrzmX9DGf/view?usp=sharing - https://archive.org/download/webarena-env-forum-image - http://metis.lti.cs.cmu.edu/webarena-images/postmill-populated-exposed-withimg.tar ``` docker load --input postmill-populated-exposed-withimg.tar docker run --name forum -p 4444:80 -d postmill-populated-exposed-withimg ``` Now you can visit `http://:4444/`.