chrodev/docker-compose.yml

19 lines
271 B
YAML
Raw Normal View History

2024-07-23 16:40:12 -04:00
version: '3'
services:
reverse_proxy:
image: nginx:latest
ports:
- "80:80"
- "443:443"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
networks:
- frontend
networks:
frontend:
name: frontend
backend:
name: backend