1
0
Fork 0

Upgrade gitea to 1.16.9

This commit is contained in:
🎷🐢 S. P. O. Clayton 2022-07-13 10:24:30 -04:00
parent ff0741d09b
commit 541375b38d
Signed by: sean
SSH Key Fingerprint: SHA256:zkuPrRvkEDiQQv1Y5yScWa6I4zhj+eiv7XnP8pxIxVU
2 changed files with 1 additions and 26 deletions

View File

@ -27,30 +27,12 @@
target: /var/lib/postgresql/data
state: "{{ container_state }}"
- name: Create Gitea Directory
file:
path: ~/gitea
state: directory
recurse: yes
- name: Send Gitea Dockerfile
copy:
src: ./gitea/Dockerfile
dest: ~/gitea/Dockerfile
- name: Build Gitea image
docker_image:
name: gitea
source: build
build:
path: "./gitea"
- name: Run Gitea
docker_container:
name: "{{ stack_prefix_name }}gitea"
recreate: true
restart_policy: always
image: gitea
image: ghcr.io/noenv/gitea:1.16.9
published_ports:
- "3000:3000"
env:

View File

@ -1,7 +0,0 @@
FROM gitea/gitea:1.16.8
COPY app.ini /data/gitea/conf/app.ini
RUN apk --no-cache add asciidoctor
RUN rm -rf /var/cache/apk/*