67 lines
1.9 KiB
YAML
67 lines
1.9 KiB
YAML
#cloud-config
|
|
# Add groups to the system
|
|
# Adds the ubuntu group with members 'root' and 'sys'
|
|
# and the empty group hashicorp.
|
|
groups:
|
|
- ubuntu: [root,sys]
|
|
- hashicorp
|
|
|
|
# Add users to the system. Users are added after groups are added.
|
|
users:
|
|
- default
|
|
- name: terraform
|
|
gecos: terraform
|
|
shell: /bin/bash
|
|
primary_group: hashicorp
|
|
sudo: ALL=(ALL) NOPASSWD:ALL
|
|
groups: users, admin
|
|
lock_passwd: false
|
|
ssh_authorized_keys:
|
|
- ${rss_key}
|
|
|
|
|
|
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
|
|
container_name: gitea
|
|
environment:
|
|
- USER_UID=1000
|
|
- USER_GID=1000
|
|
- GITEA__database__DB_TYPE=postgres
|
|
- GITEA__database__HOST=${private_ip}
|
|
- GITEA__database__NAME=gitea
|
|
- GITEA__database__USER=gitea
|
|
- GITEA__database__PASSWD=gitea
|
|
restart: always
|
|
volumes:
|
|
- ./gitea:/data
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
ports:
|
|
- "3000:3000"
|
|
- "2222:22"
|
|
|
|
# instalujemy docker, docker-compose a następnie uruchamiamy naszą bazę danych
|
|
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
|