Skip to content

Commit

Permalink
Merge branch 'release/1.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
agung2001 committed Nov 11, 2021
2 parents 2371cae + 05216f1 commit 6ef6637
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 0 deletions.
1 change: 1 addition & 0 deletions .env-sample
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NETWORK_NAME=artistudio_network
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/.idea

# Configuration
.env
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
![YouTrack](logo.jpg)

# Youtrack

YouTrack is a project management tool from a company called JetBrains which make IDEs like PHPStorm, PyCharm, GoLand, etc. It offers nice features like issues tracking, sprint plan, workflow, and many more.

## Installation
- Clone this repo
- Rename `.env-sample` to `.env`
- Run with docker-compose `docker-compose up -d`

## References:
* [JetBrains Youtrack](https://www.jetbrains.com/youtrack/)
* [JetBrains Youtrack - Documentation](https://www.jetbrains.com/youtrack/documentation/)
21 changes: 21 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
version: "3"
services:

youtrack:
image: jetbrains/youtrack:2021.3.29124
container_name: jetbrains_youtrack
restart: always
networks:
- artistudio_network
volumes:
- ./data:/opt/youtrack/data
- ./conf:/opt/youtrack/conf
- ./logs:/opt/youtrack/logs
- ./backups:/opt/youtrack/backups
ports:
- 8080:8080

networks:
artistudio_network:
external:
name: ${NETWORK_NAME}
Binary file added logo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions restart.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh
docker-compose down
docker-compose up -d

0 comments on commit 6ef6637

Please sign in to comment.