RageMP freefly (6 degrees of freedom) game mode
Source repo for Docker's Documentation
nappy/eslint-import-resolver-babel-module 0
Custom eslint resolve for babel-plugin-module-resolver
A Docker-powered seedbox with persistent data and more cool stuff.
Use immer to drive state with a React hooks
Visual Studio Code
issue commentkubernetes/ingress-gce
Support multiple addresses (including IPv6)
make the same resource available through dual-stack IPv4 and IPv6
Since you will need 2 configurations, 2 ingresses and are charged 2 times, I would not agree with the term dual-stack. I would call that double-stack.
comment created time in a month
issue closedmicrosoft/fluentui
Reexport functions / types from @uifabric/utilities in @uifabric/styling
Currently I am using both @uifabric/utilities and @uifabric/styling in my imports and package.json, even though @uifabric/utilities is already a dependency of @uifabric/styling.
The following functions / types in particular are not reexported in @uifabric/styling:
IStyleFunctionOrObjectIStyleFunctionclassNamesFunctionstyled
closed time in a month
nappyissue closedfanduel-oss/refract
LICENSE file should be included in npm bundle
The license text is currently not provided with the npm bundle.
In order to allow automation tools like license-webpack-plugin to pick it up, it should be included there.
Also the license states: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
This includes the npm registry.
closed time in a month
nappyissue closedesamattis/underscore.string
LICENSE file should be included in npm bundle
The license text is currently not provided with the npm bundle.
In order to allow automation tools like license-webpack-plugin to pick it up, it should be included there.
Also the license states: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
This includes the npm registry.
closed time in a month
nappyissue closedacdlite/change-emitter
LICENSE file should be included in npm bundle
The license text is currently not provided with the npm bundle.
In order to allow automation tools like license-webpack-plugin to pick it up, it should be included there.
Also the license states: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
This includes the npm registry.
closed time in a month
nappyissue closedzalmoxisus/redux-devtools-extension
LICENSE file should be included in npm bundle
The license text is currently not provided with the npm bundle.
In order to allow automation tools like license-webpack-plugin to pick it up, it should be included there.
Also the license states: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
This includes the npm registry.
closed time in a month
nappyissue commentjellyfin/jellyfin
DLNA not discovered - Docker & Traefik
Just for the future readers here. I discovered that using host networking and a static route configuration was not necessary. What I did was to create a macvlan and let the jellyfin container be in both macvlan and traefik vlan. This simplifies the whole setup.
version: "3.8"
services:
traefik:
image: traefik
restart: always
networks:
- traefik
command:
- "--providers.docker=true"
- "--providers.docker.exposedByDefault=false"
- "--entryPoints.web.address=:80"
- "--entryPoints.websecure.address=:443"
ports:
- 80:80
- 443:443
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
labels:
- "traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https"
- "traefik.http.middlewares.redirect-to-https.redirectscheme.permanent=true"
jellyfin:
image: jellyfin/jellyfin
restart: unless-stopped
user: 1000:1000
networks:
- vlan3
- traefik
volumes:
- jellyfin_config:/config
- jellyfin_cache:/cache
- media:/media:ro
labels:
- "traefik.enable=true"
- "traefik.http.routers.jellyfin.rule=Host(`jellyfin.${DOMAIN}`)"
- "traefik.http.routers.jellyfin.entrypoints=web"
- "traefik.http.routers.jellyfin.middlewares=redirect-to-https"
- "traefik.http.routers.jellyfinsecure.rule=Host(`jellyfin.${DOMAIN}`)"
- "traefik.http.routers.jellyfinsecure.entrypoints=websecure"
- "traefik.http.routers.jellyfinsecure.tls=true"
- "traefik.http.services.jellyfinsecure.loadbalancer.server.port=8096"
networks:
traefik:
macvlan:
driver: macvlan
driver_opts:
parent: eth0 #replace with your host interface / vlan to use
ipam:
config:
- subnet: 10.0.0.0/16 #docker will assign ip addresses from this range, check your DHCP configuration
volumes:
jellyfin_config:
driver: local
jellyfin_cache:
driver: local
media:
driver: local
comment created time in a month
issue closedlinuxserver/docker-rutorrent
Advanced > CA certificate and path settings are not persisted in /config
In general I am not able to persist custom CA configuration.
Expected Behavior
When I change CA certificate or path inside the UI, that change should be persisted in /config or additional required mounts points should be documented
Current Behavior
I need to configure after each container start
Steps to Reproduce
- Start container
- Start a torrent using an untrusted announce URL and get it erroring
- Change advanced values to include custom CA cert (pem)
- Update Tracker (should resolve the error)
- Restart container
Environment
OS: debian
CPU architecture: x86_64
How docker service was installed:
Though repository, docker-compose prebuilt binary
Command used to create docker container (run/create/compose/screenshot)
rutorrent:
image: linuxserver/rutorrent:v3.10-ls90
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
ports:
- 51413:51413
- 51413:51413/udp
volumes:
- ./certs:/certs
- rutorrent_config:/config
- rutorrent_downloads:/downloads
closed time in a month
nappyissue commentlinuxserver/docker-rutorrent
Advanced > CA certificate and path settings are not persisted in /config
Nevermind, most probably the issue is, that ruTorrent / rtorrent does not persist those settings at all.
The solution is probably, to fix stuff in /etc/ssl/certs, which libcurl uses by default without needing to specify --cacert or --capath arguments.
comment created time in a month
issue openedlinuxserver/docker-rutorrent
Advanced > CA certificate and path settings are not persisted in /config
In general I am not able to persist custom CA configuration.
Expected Behavior
When I change CA certificate or path inside the UI, that change should be persisted in /config or additional required mounts points should be documented
Current Behavior
I need to configure after each container start
Steps to Reproduce
- Start container
- Start a torrent using an untrusted announce URL and get it erroring
- Change advanced values to include custom CA cert (pem)
- Update Tracker (should resolve the error)
- Restart container
Environment
OS: debian
CPU architecture: x86_64
How docker service was installed:
Though repository, docker-compose prebuilt binary
Command used to create docker container (run/create/compose/screenshot)
rutorrent: image: linuxserver/rutorrent:v3.10-ls90 restart: unless-stopped environment: - PUID=1000 - PGID=1000 - TZ=Europe/Berlin ports: - 51413:51413 - 51413:51413/udp volumes: - ./certs:/certs - rutorrent_config:/config - rutorrent_downloads:/downloads
created time in a month
Source repo for Docker's Documentation
fork in a month
fork nappy/seedbox
A Docker-powered seedbox with persistent data and more cool stuff.
fork in a month
startedcbirkenbeul/docker-homelab
started time in a month