You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
services:
|
|
proxy:
|
|
image: nginx
|
|
volumes:
|
|
- type: bind
|
|
source: ./proxy/nginx.conf
|
|
target: /etc/nginx/conf.d/default.conf
|
|
read_only: true
|
|
ports:
|
|
- 80:80
|
|
depends_on:
|
|
- backend
|
|
|
|
backend:
|
|
build:
|
|
context: backend
|
|
target: builder
|