11 lines
199 B
YAML
11 lines
199 B
YAML
version: '3'
|
|
services:
|
|
nginx:
|
|
image: nginx:latest
|
|
container_name: nginx-reverse-proxy
|
|
ports:
|
|
- "80:80"
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/nginx.conf
|
|
restart: always
|