Ubuntu server 18.04 network configuration

Ubuntu server 18.04 network configuration In ubuntu 18.04 network configuration was replaced by netplan To configure network with statik ip we create file /etc/netplan/01-netcfg.yaml network: version: 2 renderer: networkd ethernets: enp2s0: dhcp4: no dhcp6: no addresses: [192.168.0.224/24] gateway4: 192.168.0.1 nameservers: addresses: [192.168.0.240] Delete default file with dhcp network. Caution: DON’T USE TAB, ONLY SPACE’S rm […]

Читать дальше… from Ubuntu server 18.04 network configuration

Awx tower(ansible) with docker-compose

Awx tower(ansible) with docker-compose version: ‘3’ services: postgres: image: “postgres:10.5” volumes: – “./data/pgdata:/var/lib/postgresql/data” restart: always ports: – “35432:5432” environment: POSTGRES_USER: awx POSTGRES_PASSWORD: awxpass POSTGRES_DB: awx rabbitmq: image: “rabbitmq:3” restart: always environment: RABBITMQ_DEFAULT_VHOST: awx memcached: image: “memcached:alpine” restart: always awx_web: image: “ansible/awx_web:latest” links: – rabbitmq – memcached – postgres ports: – “85:8052” hostname: awxweb restart: always […]

Читать дальше… from Awx tower(ansible) with docker-compose