emanuelegori / Dozzle

0 likes
0 forks
2 files
Last active 1740935095
Dozzle is a small lightweight application with a web based interface to monitor Docker logs. It doesn’t store any log files. It is for live monitoring of your container logs only.
1 services:
2 dozzle:
3 container_name: dozzle
4 image: amir20/dozzle:latest
5 ports:
6 - 9999:8080
7 environment:
8 - DOZZLE_AUTH_PROVIDER=simple
9 - DOZZLE_HOSTNAME=<tuo_hostname>
10 volumes:

emanuelegori / NPM Nginx Proxy Manager

0 likes
0 forks
1 files
Last active 1745742986
Expose web services on your network · Free SSL with Let's Encrypt · Designed with security in mind · Perfect for home networks: By creating a custom Docker network, you don't need to publish ports for your upstream services to all of the Docker host's interfaces.
1 secrets:
2 # Secrets are single-line text files where the sole content is the secret
3 # Paths in this example assume that secrets are kept in local folder called ".secrets"
4 DB_ROOT_PWD:
5 file: .secrets/db_root_pwd.txt
6 MYSQL_PWD:
7 file: .secrets/mysql_pwd.txt
8
9 services:
10 npm:
Newer Older