I'm trying to run a web server with Bitbucket Pipelines.
This is my bitbucket-pipelines.yml so far:
image: php:latest
pipelines:
default:
- step:
caches:
- composer
script:
- apt-get update && apt-get install -y unzip
- curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
- composer install
- vendor/bin/behat --colors --format=pretty --out=std
services:
- selenium
- nginx
definitions:
services:
selenium:
hostname: selenium
image: selenium/standalone-chrome:latest
nginx:
image: nginx
Now if I go to http://localhost I can see the default Nginx page.
How can I serve some files in the repository instead of that? Is it possible to copy files to the Nginx container?
Bump! I'm also trying to figure this out right now!
Did you work this out?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.