Provision privatebin

This commit is contained in:
Jake Howard 2021-02-12 23:32:31 +00:00
parent 47df8164fa
commit 3014e5d052
Signed by: jake
GPG key ID: 57AFB45680EDD477
5 changed files with 45 additions and 0 deletions

View file

@ -52,6 +52,7 @@
- duplicati - duplicati
- yourls - yourls
- pve_nebula_route - pve_nebula_route
- privatebin
- hosts: ingress - hosts: ingress
roles: roles:

View 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

View file

@ -0,0 +1,4 @@
- name: restart privatebin
shell:
chdir: /opt/privatebin
cmd: "{{ docker_update_command }}"

View 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

View file

@ -164,3 +164,11 @@ resource "cloudflare_record" "theorangeonenet_notes" {
type = "CNAME" type = "CNAME"
ttl = 1 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
}