mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 13:03:56 -05:00
added TZ environment variable to containers
This commit is contained in:
parent
522cff3a18
commit
b1c0a8aedc
|
@ -14,6 +14,9 @@
|
||||||
audiobookshelf = {
|
audiobookshelf = {
|
||||||
ports = ["0.0.0.0:13378:80"];
|
ports = ["0.0.0.0:13378:80"];
|
||||||
image = "ghcr.io/advplyr/audiobookshelf:latest";
|
image = "ghcr.io/advplyr/audiobookshelf:latest";
|
||||||
|
environment = {
|
||||||
|
TZ = "America/New_York";
|
||||||
|
};
|
||||||
volumes = [
|
volumes = [
|
||||||
"abs_config:/config"
|
"abs_config:/config"
|
||||||
"abs_metadata:/metadata"
|
"abs_metadata:/metadata"
|
||||||
|
@ -23,6 +26,9 @@
|
||||||
plex-server = {
|
plex-server = {
|
||||||
ports = ["0.0.0.0:32400:32400"];
|
ports = ["0.0.0.0:32400:32400"];
|
||||||
image = "plexinc/pms-docker:public";
|
image = "plexinc/pms-docker:public";
|
||||||
|
environment = {
|
||||||
|
TZ = "America/New_York";
|
||||||
|
};
|
||||||
volumes = [
|
volumes = [
|
||||||
"plex_config:/config"
|
"plex_config:/config"
|
||||||
"plex_transcode:/transcode"
|
"plex_transcode:/transcode"
|
||||||
|
@ -32,6 +38,9 @@
|
||||||
transmission-server = {
|
transmission-server = {
|
||||||
ports = ["0.0.0.0:9091:9091" "0.0.0.0:51413:51413"];
|
ports = ["0.0.0.0:9091:9091" "0.0.0.0:51413:51413"];
|
||||||
image = "linuxserver/transmission:latest";
|
image = "linuxserver/transmission:latest";
|
||||||
|
environment = {
|
||||||
|
TZ = "America/New_York";
|
||||||
|
};
|
||||||
volumes = [
|
volumes = [
|
||||||
"transmission_config:/config"
|
"transmission_config:/config"
|
||||||
"/mnt/Media/Torrents:/watch"
|
"/mnt/Media/Torrents:/watch"
|
||||||
|
|
Loading…
Reference in a new issue