Youtrack
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Tobias Manske 2022-10-27 02:53:18 +02:00
parent dc5390f390
commit 2b48b4a385
Signed by: tobias
GPG Key ID: E83C743C1FC2F79A
3 changed files with 39 additions and 0 deletions

View File

@ -4,3 +4,10 @@
- new
include_tags:
- ^stable-\d+
- name: docker.io/jetbrains/youtrack
watch_repo: true
notify_on:
- new
include_tags:
- .*

View File

@ -0,0 +1,2 @@
COMPOSE_PROJECT_NAME=youtrack
VERSION=2022.2.59587

View File

@ -0,0 +1,30 @@
---
version: "3.4"
services:
youtrack:
image: jetbrains/youtrack:${VERSION}
volumes:
- data:/opt/youtrack/data
- conf:/opt/youtrack/conf
- logs:/opt/youtrack/logs
- backups:/opt/youtrack/backups
labels:
- "traefik.enable=true"
- "traefik.http.routers.youtrack.rule=Host(`youtrack.tobiasmanske.de`)"
- "traefik.http.routers.youtrack.entryPoints=websecure"
- "traefik.http.services.youtrack.loadbalancer.server.port=8080"
restart: always
networks:
- gateway
networks:
gateway:
external: true
volumes:
data:
conf:
logs:
backups:
...