17 lines
293 B
YAML
17 lines
293 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
nginx-proxy:
|
|
image: nginx:latest
|
|
container_name: nginx-proxy
|
|
ports:
|
|
- "80:80"
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/nginx.conf:ro
|
|
restart: unless-stopped
|
|
networks:
|
|
- proxy-network
|
|
|
|
networks:
|
|
proxy-network:
|
|
driver: bridge |