19 lines
307 B
YAML
19 lines
307 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
web:
|
|
build: .
|
|
container_name: web-app
|
|
expose:
|
|
- "80"
|
|
|
|
nginx:
|
|
image: nginx:alpine
|
|
container_name: nginx-proxy
|
|
ports:
|
|
- "80:80"
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
|
|
depends_on:
|
|
- web
|