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