Hello again,
i modified the Dashboard UI from @smar . it is great.
But i want to run Dashing and all related services in a docker container.
A docker container with dashing (without postgres) won’t work. So i decided to use the postgres container and installed the dashing service. After any kind of restart, i need to sign on and execute the following:
cd /dashing
dashing start
Is there anyone that is familiar with docker?
I am using docker on a synology DiskStation, so i don’t have access to all docker related command-line tools.
Linking a Postgres-Docker Container is described here
$ docker run -d --name db postgres/postgres
$ docker run -d -P --name dashboard --link db:db frvi/dashing
Using this linking system, i can not use postgres inside the dashing container…
Some hint would be appreciated