Files
11note-docker-nginx/compose.yaml
github-actions[bot] 712d64e484 auto update README.md
2025-04-28 09:03:23 +00:00

25 lines
417 B
YAML

name: "nginx"
services:
nginx:
image: "11notes/nginx:1.28.0"
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: