Categoria: Doker

Installare Doker e Portainer su Ubuntu 22.04

Gennaio 10, 2023 By luca@studiomondello.eu

Installare Doker sudo apt install apt-transport-https ca-certificates curl software-properties-common curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg –dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg echo “deb [arch=$(dpkg –print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable” | sudo tee […]

Installare Nginx Proxy Manager

Ottobre 18, 2021 By luca@studiomondello.eu

Preparazione Container mkdir nproxy cd nproxy/ Creazione docker-compose.yml nano docker-compose.yml version: ‘3’ services: app: image: ‘jc21/nginx-proxy-manager:latest’ restart: unless-stopped ports: – ’80:80′ – ’81:81′ – ‘443:443’ volumes: – ./data:/data – ./letsencrypt:/etc/letsencrypt […]

Installare Doker e Portainer su Ubuntu 18.04

Ottobre 18, 2021 By luca@studiomondello.eu

Installare Doker apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add – apt-key fingerprint 0EBFCD88 add-apt-repository “deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable” apt-get remove docker […]