emanuelegori / ciao

0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность 1 month ago
checks HTTP(S) URL endpoints for a HTTP status code (or errors on the lower TCP stack)
1 services:
2 ciao:
3 image: brotandgames/ciao
4 container_name: ciao
5 ports:
6 - '8090:3000'
7 environment:
8 - TIME_ZONE=Rome
9 - BASIC_AUTH_USERNAME=myusername
10 - BASIC_AUTH_PASSWORD=mypassword

emanuelegori / wg0.conf client Wireguard

0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность 1 month ago
file /etc/wireguard/wg0.conf del Client Ubuntu. Questa configurazione permette al VPS che faccia da gateway per accedere alla rete locale dietro NAT tramite un PC locale che funge da client wiregurad
1 [Interface]
2 Address = 10.13.13.2/31
3 PostUp = wg set %i private-key /etc/wireguard/%i.key
4 ListenPort = 51820
5
6 [Peer]
7 # alfa site
8 PublicKey = /m4J1nIK4z2voC5qkk1krKV7Lwb4qJtt++XIhNGSskY=
9 AllowedIPs = 10.13.13.0/31
10 Endpoint = 51.255.50.17:51820

emanuelegori / Opengist

0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность 1 month ago
Self-hosted pastebin powered by Git, open-source alternative to Github Gist
1 services:
2 opengist:
3 container_name: opengist
4 hostname: opengist
5 image: ghcr.io/thomiceli/opengist:latest
6 security_opt:
7 - no-new-privileges:true
8 ports:
9 - 6157:6157
10 volumes:

emanuelegori / Dozzle

0 лайк(-ов)
0 форк(-ов)
2 файл(-ов)
Последняя активность 1 month ago
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: