Solved Docker restyaboard problem

Currently reading
Solved Docker restyaboard problem

Hey there

I tried to install restyaboard on my synology. But I keep having problems to get it running. I created the following docker-compose file:

YAML:
version: '2.2'

services:
  restyaboard_app:
    image: restyaplatform/restyaboard:v0.6.7
    networks:
      private: {}
    container_name: restyaboard_app
    environment:
      POSTGRES_DB: restyaboard
      POSTGRES_HOST: postgres
      POSTGRES_PASSWORD: admin
      POSTGRES_USER: admin
      TZ: 'Europe/Berlin'
      PUID: 1043
      PGID: 100
    volumes:
    - /volume1/docker/restya/app:/usr/share/nginx/html/media
    ports:
    - "6059:80"
    restart: unless-stopped

  restyaboard_db:
    image: postgres:12.2-alpine
    container_name: restyaboard_db
    networks:
      private:
    stop_grace_period: 1m30s
    environment:
      PGDATA: /var/lib/postgresql/data/pgdata
      POSTGRES_DB: restyaboard
      POSTGRES_HOST: postgres
      POSTGRES_PASSWORD: admin
      POSTGRES_USER: admin
    volumes:
    - /volume1/docker/restya/db/data:/var/lib/postgresql/data
    restart: unless-stopped
    
networks:
  private: {}

The restya container cant connect to the postgres container:
psql: could not translate host name "postgres" to address: No address associated with hostname

Maybe it is just a thing, but I do not get it right. Do you have a hint for me?

Kind regards!
 
In both containers?

Then he cannot connect:
Code:
psql: could not connect to server: Connection refused

Normally this setup worked with other containers.
 
In both containers?
Well Restya needs that variable for sure in order to connect to Postgres container. Personally I see no need to have those same variables in a postgres container as well. Apart from maybe

POSTGRES_USER
POSTGRES_PASSWORD
So imho HOST and PORT variables in Postgres container are not needed.
 
Ahhh I solved it. In the restya container settings. This was the false entry.
POSTGRES_HOST: postgres
It has to be the name of the db container name. Then the link will be created.
POSTGRES_HOST: restyaboard_db
 
Ok I'm shocked right now.
Why does this thing need so many anlytics and advertisement? Google, gstatic and doubleclick???

Does anybode know, how to disable it?
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Similar threads

I can’t find any option to restore just the settings. 1710356648 Phew, managed to fix it. Within the...
Replies
4
Views
390
Good to hear. Deluge has not been updated for almost two years now as an app, nevertheless. But it gives...
Replies
12
Views
958
  • Question
Open an issue on that GitHub page. The developers will be glad to assist. OP has posted two threads on...
Replies
5
Views
963
I'm happy with email notifications but in v0.3.3 of dockcheck the author added apprise notifications...
Replies
4
Views
1,041
I am also trying to setup a Z-wave USB dongle and am getting stuck after following the same steps as...
Replies
1
Views
1,030
How did you create the Portainer container in first place? As in exact docker run commands or in case...
Replies
7
Views
1,237
Looks like I triggered you somehow with my post: it was not my intention. I have no idea whether bash or...
Replies
4
Views
1,532

Welcome to SynoForum.com!

SynoForum.com is an unofficial Synology forum for NAS owners and enthusiasts.

Registration is free, easy and fast!

Back
Top