initial commit

Signed-off-by: ale <ale@manalejandro.com>
Este commit está contenido en:
ale
2025-11-02 01:39:56 +01:00
commit aff6c82553
Se han modificado 34 ficheros con 4744 adiciones y 0 borrados

Ver fichero

@@ -0,0 +1,28 @@
version: '3.8'
services:
web:
image: nginx:alpine
container_name: example-web
restart: unless-stopped
expose:
- "80"
environment:
# Required for nginx-proxy
- VIRTUAL_HOST=example.com
- VIRTUAL_PORT=80
# Optional: Let's Encrypt SSL
- LETSENCRYPT_HOST=example.com
- LETSENCRYPT_EMAIL=admin@example.com
volumes:
- ./html:/usr/share/nginx/html:ro
networks:
- nginx-proxy
labels:
# Buque labels for tracking
- "buque.environment=example"
- "buque.managed=true"
networks:
nginx-proxy:
external: true