Hide many services inside docker network without exposing ports
This commit is contained in:
@ -9,20 +9,23 @@
|
||||
autoStart = true;
|
||||
|
||||
dependsOn = [
|
||||
"pihole"
|
||||
# "pihole"
|
||||
];
|
||||
|
||||
ports = [
|
||||
"3000:3000"
|
||||
# "3000:3000"
|
||||
];
|
||||
|
||||
volumes = [
|
||||
"homepage_config:/app/config"
|
||||
|
||||
"/var/run/docker.sock:/var/run/docker.sock:ro"
|
||||
];
|
||||
|
||||
environment = {};
|
||||
|
||||
extraOptions = [];
|
||||
extraOptions = [
|
||||
"--net=behind-nginx"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user