jakubmana

Members
  • Posts

    9
  • Joined

  • Last visited

Converted

  • Gender
    Male
  • Location
    Slovakia

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

jakubmana's Achievements

Noob

Noob (1/14)

0

Reputation

  1. take a look here for an example jenkins argument:- https://hub.docker.com/r/binhex/arch-jenkins/ Thanks, but could you be more specific please? I can see there Java Opts but no Jenkins... and I dont see there written how to change the original etc/default/jenkins file. Thanks
  2. Hi, Im wondering where should I put my Jenkins Args... I want to run my jenkins docker through reverse proxy from a folder (devel.xyz.com/jenkins/) and as per jenkins docks I need to edit file ( /etc/default/jenkins) by adding a line: JENKINS_ARGS="--webroot=/var/cache/jenkins/war --httpPort=$HTTP_PORT --ajp13Port=$AJP_PORT --prefix=/jenkins" Can you please advise how / where should I find the file? Thank you
  3. Have you read the Docker FAQ sticky thread? This is a good one. Do you have any other working dockers? Yes, I have several virtual servers and dockers running ok also using nginx as reverse proxy for all of them... but no matter what docker of plex I install I got the screen u can see attached here. Did you look at the link I gave you? I did but I dont know what to look for there... docker itself is working fine, I can go open the web interface and there is no errors or warnings in logs
  4. Have you read the Docker FAQ sticky thread? This is a good one. Do you have any other working dockers? Yes, I have several virtual servers and dockers running ok also using nginx as reverse proxy for all of them... but no matter what docker of plex I install I got the screen u can see attached here.
  5. Hi, I have installed this docker of Plex but when I go to the web interface it cannot find any plex media server and shows me an option to download it. What should I do to make it work?
  6. Hi, Im having a problem with subdomains using this container. SSL working just fine, but when I try to work with subdomains what happens is all subdomains behaves like the domain itself... it ignores config files and no maptter what subdomain i enter, it all goes to default server config and its locations... Config files for my subdomains which I use are the same I used for my previous NGINX container where it was working correctly. Can you please advise what should I do to make it work? Default: server { listen 80 default_server; #listen [::]:80 default_server ipv6only=on; listen 443 ssl; index index.html index.htm index.php; server_name _; ssl_certificate /config/keys/fullchain.pem; ssl_certificate_key /config/keys/privkey.pem; ssl_dhparam /config/nginx/dhparams.pem; ssl_ciphers 'ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:AES:CAMELLIA:DES-CBC3-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!aECDH:!EDH-DSS-DES-CBC3-SHA:!EDH-RSA-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA'; ssl_prefer_server_ciphers on; client_max_body_size 0; location / { root /config/www; try_files $uri $uri/ /index.html /index.php?$args =404; } } MyDomain: server { listen 80; server_name inside.xxxxx.com; location /jenkins { include /config/nginx/proxy.conf; proxy_pass http://192.168.100.210:8080/jenkins/; } }
  7. Are you sure your postgresql container is up and running? It looks like docker can't find it. based on logs, yes... Postgres is running fine. Autovacuum has been started by itself so it has to be running. Its true that Postgres container is not starting up after server reboot (and its set to autostart) but im pretty sure its running. Log: LOG: MultiXact member wraparound protections are now enabled LOG: database system is ready to accept connections LOG: autovacuum launcher started do u think it could help if I removed postgres and install it again?
  8. Hi guys, im having problems with installing GitLab docker. I've installed the first time with few issues but then i managed to get it work properly. Today i clicked on "update" during updating the docker something went wrong and it finished with the last command of removing docker. Then GitLab disappeared from the list. I've tried to install it back, bac since then im getting the same error msgs.. im not sure why or whats wrong because Redis and PostrgeSQL are working properly. Here is the log: root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker run -d --name="gitlab" --net="bridge" --privileged="true" -e TZ="Europe/Budapest" -e HOST_OS="unRAID" -e "GITLAB_HOST"="localhost" -e "GITLAB_EMAIL"="[email protected]" -e "GITLAB_SSH_PORT"="10020" -e "GITLAB_PORT"="10080" -e "GITLAB_HTTPS"="false" -e "SSL_SELF_SIGNED"="false" -e "SMTP_USER"="[email protected]" -e "SMTP_PASS"="Domovina1" -e "GITLAB_BACKUPS"="daily" -e "GITLAB_BACKUP_EXPIRY"="2419200" -e "GITLAB_SECRETS_DB_KEY_BASE"="dbeW7bg7PxzPBGKj2H6LpZXcQhA8kyQkLHJNE3RgQ54nbD7r" -e "DB_NAME"="gitlabhq_production" -e "DB_USER"="gitlab" -e "DB_PASS"="Domovina1" -p 10022:22/tcp -p 10080:80/tcp -p 10443:443/tcp -v "/mnt/user/Applications/Docker/appdata/GitLab_New/":"/home/git/data":rw -v "/mnt/user/GitLab/":"/unraid":rw --link postgresql:postgresql --link redis:redisio sameersbn/gitlab docker: Error response from daemon: Could not get container for postgresql. See '/usr/bin/docker run --help'. The command failed. is there anybody who can help me our with solving this issue? thank you very much in advance.