Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Nginx In Bitbucket pipelines

lrodrigo February 8, 2018

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?

2 answers

0 votes
Derek McLean May 24, 2023

Bump! I'm also trying to figure this out right now!

0 votes
lionslair October 9, 2018

Did you work this out?

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events