-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
NETWORK_NAME=artistudio_network |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/.idea | ||
|
||
# Configuration | ||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/sh | ||
docker-compose down | ||
docker-compose up -d |