Guest User

Untitled

a guest
Sep 7th, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.61 KB | None | 0 0
  1. version: '3'
  2. services:
  3.         webserv:
  4.                 build:
  5.                         context: ./
  6.                         dockerfile: web.docker
  7.                 ports:
  8.                        - '80:80'
  9.                         - '443:443'
  10.                 depends_on:
  11.                        - app
  12.                 volumes:
  13.                        - ./:/app
  14.                         - ./default.conf:/etc/nginx/conf.d/default.conf
  15.         app:
  16.                 image: 'bitnami/php-fpm:latest'
  17.                 ports:
  18.                        - '9000:9000'
  19.                 volumes:
  20.                        - ./:/app
Advertisement
Add Comment
Please, Sign In to add comment