Make gitea better; new images, new theme, etc.

master
josiah 3 years ago
parent f853b48a3b
commit b7d6493166

@ -3,7 +3,7 @@ all:
dockerhosts:
hosts:
awful-1.awful.club:
ansible_python_interpreter: /usr/local/bin/python3.7
ansible_python_interpreter: python3
home:
hosts:
hatchery.home.jowj.net:

Binary file not shown.

After

Width:  |  Height:  |  Size: 862 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.9 KiB

@ -31,6 +31,10 @@
groups=docker
append=yes
- name: install python packages
pip:
name: ["jsondiff", "docker"]
- name: Init a new swarm with default parameters
docker_swarm:
state: present
@ -39,10 +43,6 @@
file: state=directory path={{ item }} owner=josiah group=josiah mode=0700
loop: [ '/home/josiah/apps/mojo/', '/home/josiah/apps/arke/', '/home/josiah/apps/znc/', '/home/josiah/apps/awful/' ]
- name: allow for pretty json errors
pip:
name: jsondiff
# Update the app git repos
- name: update the mojo git repo
git:
@ -70,7 +70,19 @@
with_items:
- {src: 'awful-compose.yml', dest: '/home/josiah/apps/awful/docker-compose.yml'}
- {src: 'traefik.yml', dest: '/home/josiah/apps/awful/traefik.yml'}
- {src: 'awful.club.html', dest: '/home/josiah/apps/awful/awful.club.html'}
- {src: 'awful.club.html', dest: '/home/josiah/apps/awful/awful.club.html'}
- name: make sure that my custom gitea shit is there
copy:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
mode: 0644
with_items:
- {src: 'favicon.ico', dest: '/mnt/volume_sfo2_01/gitea/gitea/public/img'}
- {src: 'favicon-16x16.png', dest: '/mnt/volume_sfo2_01/gitea/gitea/public/img'}
- {src: 'favicon-32x32.png', dest: '/mnt/volume_sfo2_01/gitea/gitea/public/img'}
- {src: 'purple-bat-nobg.png', dest: '/mnt/volume_sfo2_01/gitea/gitea/public/img/gitea-lg.png'}
- {src: 'purple-bat-nobg.svg', dest: '/mnt/volume_sfo2_01/gitea/gitea/public/img/logo.svg'}
- name: Deploy awful stack
docker_stack:

Loading…
Cancel
Save