19 lines
274 B
YAML
19 lines
274 B
YAML
version: "3"
|
|
services:
|
|
nginx:
|
|
image: nginx:1.16
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
networks:
|
|
- nginx-network
|
|
restart: always
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/nginx.conf:ro
|
|
|
|
|
|
networks:
|
|
nginx-network:
|
|
name:
|
|
nginx-network
|