Provision privatebin
This commit is contained in:
parent
47df8164fa
commit
3014e5d052
5 changed files with 45 additions and 0 deletions
|
@ -52,6 +52,7 @@
|
|||
- duplicati
|
||||
- yourls
|
||||
- pve_nebula_route
|
||||
- privatebin
|
||||
|
||||
- hosts: ingress
|
||||
roles:
|
||||
|
|
15
ansible/roles/privatebin/files/docker-compose.yml
Normal file
15
ansible/roles/privatebin/files/docker-compose.yml
Normal file
|
@ -0,0 +1,15 @@
|
|||
version: "2.3"
|
||||
|
||||
services:
|
||||
privatebin:
|
||||
image: privatebin/nginx-fpm-alpine:latest
|
||||
environment:
|
||||
- TZ={{ TZ }}
|
||||
volumes:
|
||||
- "{{ app_data_dir }}/privatebin/:/srv/data"
|
||||
restart: unless-stopped
|
||||
labels:
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.privatebin.rule=Host(`bin.theorangeone.net`)
|
||||
- traefik.http.routers.privatebin.tls.certresolver=le
|
||||
- traefik.http.routers.privatebin.middlewares=compress@file
|
4
ansible/roles/privatebin/handlers/main.yml
Normal file
4
ansible/roles/privatebin/handlers/main.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
- name: restart privatebin
|
||||
shell:
|
||||
chdir: /opt/privatebin
|
||||
cmd: "{{ docker_update_command }}"
|
17
ansible/roles/privatebin/tasks/main.yml
Normal file
17
ansible/roles/privatebin/tasks/main.yml
Normal file
|
@ -0,0 +1,17 @@
|
|||
- name: Create install directory
|
||||
file:
|
||||
path: /opt/privatebin
|
||||
state: directory
|
||||
owner: "{{ docker_user.name }}"
|
||||
mode: "{{ docker_compose_directory_mask }}"
|
||||
become: true
|
||||
|
||||
- name: Install compose file
|
||||
template:
|
||||
src: files/docker-compose.yml
|
||||
dest: /opt/privatebin/docker-compose.yml
|
||||
mode: "{{ docker_compose_file_mask }}"
|
||||
owner: "{{ docker_user.name }}"
|
||||
validate: docker-compose -f %s config
|
||||
notify: restart privatebin
|
||||
become: true
|
|
@ -164,3 +164,11 @@ resource "cloudflare_record" "theorangeonenet_notes" {
|
|||
type = "CNAME"
|
||||
ttl = 1
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "theorangeonenet_privatebin" {
|
||||
zone_id = cloudflare_zone.theorangeonenet.id
|
||||
name = "bin"
|
||||
value = vultr_server.casey.main_ip
|
||||
type = "A"
|
||||
ttl = 1
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue