Files
11note-docker-nginx/compose.yaml
2025-04-14 07:23:48 +02:00

25 lines
417 B
YAML

name: "nginx"
services:
nginx:
image: "11notes/nginx:1.26.3"
read_only: true
environment:
TZ: "Europe/Zurich"
ports:
- "3000:3000/tcp"
networks:
frontend:
volumes:
- "etc:/nginx/etc"
- "var:/nginx/var"
tmpfs:
- "/nginx/cache:uid=1000,gid=1000"
- "/nginx/run:uid=1000,gid=1000"
restart: "always"
volumes:
etc:
var:
networks:
frontend: