Files
Schulung_Docker_k8s/nginx/docker-compose.yml
nutzer26 a037410306 Dienstag
2022-12-13 15:14:20 +01:00

20 lines
358 B
YAML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

version: "3.7"
services:
nginx:
image: nginx:1.19.3
ports:
- 80
volumes:
- /etc/nginx/conf.d
- /var/cache/nginx
- /run
read_only: true
 
networks:
default:
driver: bridge
ipam:
driver: default
config:
- subnet: "192.169.0.0/24"
gateway: "192.169.0.1"