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

  • Question
off course, I also notified him. I posted it here as well, because I assumed that a broader community...
Replies
2
Views
342
  • Question
Sound like the settings for remote access had a limit for the remote stream bitrate (and probably limits...
Replies
7
Views
385
done. everything works as expected. Thanks for help @Rusty and @Telos
Replies
6
Views
291
Oh, I see! That does appear to be a lot easier. Thanks for your reply! (y)
Replies
8
Views
582
Replies
5
Views
537
I've done the MACVLAN setup with Portainer/Docker, so I get the gist of what you are saying, there is...
Replies
6
Views
981
Well, that's the reason as you already noticed. So you haven't migrated the @docker content? Do you have...
Replies
5
Views
390

Welcome to SynoForum.com!

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

Registration is free, easy and fast!

Back
Top