You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Docker Changes
Initial changes
- Refactor how the docker container is started
- working on getting the startup / setup scripts working
* Working on getting the docker to build and start correctly
* Changes to the Docker files and scripts. It now brings both containers up. Runs the DB Migrations and sets everything up
* Fixes to make Docker Work
- Startup.cs : Added debug values for some Variables to make sure they are passing correctly
- Dockerfile: refactored the build and added some directory removals (I've found they cause the build to error)
- README.md : added info on docker usage
- docker-compose : removed old entries
* Refactor
Refactored the docker-compose, as my in-experince with docker containers skewed how I did some things.. this shoule be more streamlined
* Refactor for using ENV Variables
This refactors the WebAPI Code so that it will use ENV variables if they are present
* fixup!
removes mysql port
* Adds more debug info
Copy file name to clipboardExpand all lines: README.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,3 +6,12 @@ This is the update API of [https://github.com/Lidarr/Lidarr](https://github.com/
6
6
## Development
7
7
8
8
If you want to work on **LidarrAPI.Update**, make sure you have [.NET Core 2.0 SDK](https://www.microsoft.com/net/download/core) installed and [Visual Studio 2017 RC](https://www.visualstudio.com/vs/visual-studio-2017-rc/).
9
+
10
+
## Using Docker
11
+
12
+
If you would like to use the docker setup we have for this project, follow these directions:
13
+
- Setup Environment Variables
14
+
- Make sure you set an environment variable PRIOR to running docker-compose up called `MYSQL_ROOT_PASSWORD` OR
15
+
- Setup and .env file or another way of passing variables as documented here: [Docker Compose](https://docs.docker.com/compose/environment-variables/#the-env-file)
16
+
17
+
The most important thing is the `ApiKey`, the rest can be used **AS-IS**, but if the ApiKey is not set, fetching updates from AppVeyor and Github will not function correctly.
0 commit comments