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

There must be already be some sort of dependency, as the deluge service joins the network namespace of the...
Replies
6
Views
595
Ok got this running.. But how do I specify the custom_user/password settings in the yaml-file? EDIT...
Replies
7
Views
862
For the heck of it, I just checked again in docker container, and it announced an update was available. I...
Replies
4
Views
1,014
  • Question
Do realize, that enabling any user to run docker containers is largely the same as giving that user full...
Replies
6
Views
1,607
Hello, I already have it configured perfectly with wireguard. I was looking at the Gluetun configuration...
Replies
4
Views
1,570
Thanks... I tried something similar with rsync. The docker volume lived in...
Replies
7
Views
1,749

Welcome to SynoForum.com!

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

Registration is free, easy and fast!

Trending threads

Back
Top