James Hart
James Hart
This helped me when trying to get this package installed!
Hey there! We are hoping to be able to use this component soon. Any updates on when we'll get a review and release?
@levibostian I found your post very helpful, and I might implement danger into our project this exact way. Is this still the generally what is recommended for CircleCI and Danger?...
If anyone else runs into this problem, there is a new command line argument called `—fail-if-not-Pr=true`
Figured this out. Maybe it's a newer version of `administrate` potentially. But this fixes it: ``` # permitted for has_many_attached def permitted_attributes(_action = nil) super + [photos: []] end ```...
Yeah, 9 months ago they changed that method signature with this commit: https://github.com/thoughtbot/administrate/commit/fd61e4d818daefcbb7c9e088ac42f6d5b3e51e9c Could be worth updating the documentation?
Can you attach a screen shot?
Are you mounting the volumes in your `docker-compose.yml` file? Example from mine: ``` radarr: image: linuxserver/radarr:latest container_name: radarr restart: unless-stopped ports: - 7878:7878 volumes: - ./radarr/config/:/config - ${MOVIE_DIR}:/movies - ${STORAGE_DIR}/radarr:/downloads/radarr...
Okay, you've got it backwards. Update your `.env` file so that you have this: ``` MOVIE_DIR=/media/8TB/media/movies TV_SHOW_DIR=/media/8TB/media/tv STORAGE_DIR=/media/8TB/media/storage ``` And then your docker-compose.yml file will look something like this: (most...
Yes! Agreed. Any suggestions on which direction to go next?