#cloud-config packages: - apt-transport-https - ca-certificates - curl - gnupg-agent - software-properties-common write_files: - path: /root/docker-compose.yml content: | version: '3.9' services: server: image: gitea/gitea:1.15.6-rootless environment: GITEA__database__DB_TYPE: mysql GITEA__database__HOST: 10.10.10.2:3306 GITEA__database__NAME: gitea GITEA__database__USER: gitea GITEA__database__PASSWD: gitea restart: always volumes: - ./data:/root/gitea - ./config:/root/gitea/config - /etc/timezone:/etc/timezone:ro - /etc/localtime:/etc/localtime:ro - /mnt/volume:/data ports: - "3000:3000" - "222:22" runcmd: - curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - - add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" - apt-get update -y - apt-get install -y docker-ce docker-ce-cli containerd.io - curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose - chmod +x /usr/local/bin/docker-compose - systemctl start docker - systemctl enable docker - cd /root/ && docker-compose up -d - chmod a+w /mnt/*