2020-02-13 13:14:36 +00:00
|
|
|
services:
|
2022-07-12 08:27:45 +00:00
|
|
|
proxy:
|
|
|
|
image: nginx
|
|
|
|
volumes:
|
|
|
|
- type: bind
|
|
|
|
source: ./proxy/nginx.conf
|
|
|
|
target: /etc/nginx/conf.d/default.conf
|
|
|
|
read_only: true
|
2020-02-13 13:14:36 +00:00
|
|
|
ports:
|
2020-03-23 23:36:46 +00:00
|
|
|
- 80:80
|
2020-02-13 13:14:36 +00:00
|
|
|
depends_on:
|
2020-03-23 23:36:46 +00:00
|
|
|
- backend
|
2022-07-12 08:27:45 +00:00
|
|
|
|
2020-02-13 13:14:36 +00:00
|
|
|
backend:
|
2022-07-12 08:27:45 +00:00
|
|
|
build:
|
|
|
|
context: backend
|
|
|
|
target: builder
|