Renombrar docker-compose.yaml a docker-compose.yml

This commit is contained in:
2025-12-02 19:19:57 +01:00
parent 28148e1e1b
commit 24f184c947
2 changed files with 4 additions and 4 deletions

27
docker-compose.yml Normal file
View File

@@ -0,0 +1,27 @@
services:
app:
container_name: nginx-proxy-manager
image: jc21/nginx-proxy-manager:latest
restart: unless-stopped
environment:
TZ: "Europe/Madrid"
ports:
- "80:80" # HTTP
- "81:81" # Admin UI
- "443:443" # HTTPS
volumes:
- npm_data:/data
- npm_letsencrypt:/etc/letsencrypt
networks:
- proxy
volumes:
npm_data:
name: npm_data
npm_letsencrypt:
name: npm_letsencrypt
networks:
proxy:
name: proxy
driver: bridge