Archiv der Kategorie: Docker

Dashy installieren

Von | Januar 29, 2023

Quelle: github.com/Lissy93/dashy/ — version: „3.8“ services: dashy: # To build from source, replace ‚image: lissy93/dashy‘ with ‚build: .‘ # build: . image: lissy93/dashy container_name: Dashy # Pass in your config file below, by specifying the path on your host machine # volumes: # – /root/my-config.yml:/app/public/conf.yml ports: – 4000:80 # Set any environmental variables environment: -… Weiterlesen »

WireGuard Easy (wg-easy) / 1

Von | März 31, 2024

docker run -d \–name=wg-easy \-e WG_HOST=🚨YOUR_SERVER_IP \-e PASSWORD=🚨YOUR_ADMIN_PASSWORD \-v ~/.wg-easy:/etc/wireguard \-p 51820:51820/udp \-p 51821:51821/tcp \–cap-add=NET_ADMIN \–cap-add=SYS_MODULE \–sysctl=“net.ipv4.conf.all.src_valid_mark=1″ \–sysctl=“net.ipv4.ip_forward=1″ \–restart unless-stopped \weejewel/wg-easy Quelle: https://github.com/WeeJeWel/wg-easy/blob/master/README.md