Git Product home page Git Product logo

Comments (18)

PixiBixi avatar PixiBixi commented on August 25, 2024 1

Je sais plus. Dans tous les cas, je ferme l'issue vu que cela ne vient plus de l'image en elle même.

Passe par mail [email protected] si tu veux du support

from dockerfiles.

PixiBixi avatar PixiBixi commented on August 25, 2024

Yop, intéressant, pourtant il marche

Perso j'ai ça en docker-compose :

  x_h5ai:
    image: bixidock/h5ai
    restart: always
    container_name: x_h5ai
    volumes:
      - /home/x/incoming/torrents:/var/www
    environment:
      - VIRTUAL_HOST=share.x.y.eu
      - [email protected]
      - LETSENCRYPT_HOST=share.x.y.eu

Tu as quoi comme compose ?

from dockerfiles.

bilyboy785 avatar bilyboy785 commented on August 25, 2024

J'ai à peu près la même chose :

h5ai-martin:
    restart: always
    image: bixidock/h5ai
    container_name: h5ai-martin
    ports:
      - 5055:80
    volumes:
      - /home/user/data:/var/www
      - /home/martinbouillaud/dockers/h5ai/options.json:/usr/share/h5ai/_h5ai/private/conf/options.json
    environment:
      - VIRTUAL_HOST=sub.domain.tld
      - LETSENCRYPT_HOST=sub.domain.tld
      - [email protected]

Dois-je retirer la ligne port ?

from dockerfiles.

PixiBixi avatar PixiBixi commented on August 25, 2024

Ouep, essaie ça, et en enlevant von volumes options.json surtout

from dockerfiles.

bilyboy785 avatar bilyboy785 commented on August 25, 2024

Non toujours pareille.

BusyBox v1.24.2 (2017-01-18 14:13:46 GMT) multi-call binary.

Usage: addgroup [-g GID] [-S] [USER] GROUP

Add a group or add a user to a group

	-g GID	Group id
	-S	Create a system group
chown: unknown user/group dokuwiki:dokuwiki
2017-11-21 19:42:50,156 CRIT Supervisor running as root (no user in config file)
2017-11-21 19:42:50,158 INFO supervisord started with pid 10
2017-11-21 19:42:51,160 INFO spawned: 'nginx' with pid 14
2017-11-21 19:42:51,161 INFO spawned: 'php-fpm' with pid 15
2017-11-21 19:42:51,175 INFO exited: php-fpm (exit status 127; not expected)
2017-11-21 19:42:52,177 INFO success: nginx entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2017-11-21 19:42:52,179 INFO spawned: 'php-fpm' with pid 20
2017-11-21 19:42:52,188 INFO exited: php-fpm (exit status 127; not expected)
2017-11-21 19:42:54,191 INFO spawned: 'php-fpm' with pid 21
2017-11-21 19:42:54,200 INFO exited: php-fpm (exit status 127; not expected)

Bizarre que ça fasse ça d'un coup .. Ca a toujours très bien marché.

from dockerfiles.

PixiBixi avatar PixiBixi commented on August 25, 2024

Mmmh c'est clair.. je regarde plus en détail demain soir, j'ai pas le temps là...

Si encore j'utilsais alpine:edge, j'aurais pu comprendre, mais là j'suis bien en alpine:3.4...

from dockerfiles.

bilyboy785 avatar bilyboy785 commented on August 25, 2024

Pas de soucis, je vais faire des tests avec FileRun en attendant ;)

from dockerfiles.

PixiBixi avatar PixiBixi commented on August 25, 2024

J'ai check un peu, et c'est juste bizarre quoi ><"

Essaie de mettre UID=1001 et GID=1001 en variable d'env mais ça va rien changer

from dockerfiles.

bilyboy785 avatar bilyboy785 commented on August 25, 2024

Pareille .. J'ai mis 1000 parce que j'ai aucun user en 1001. Je vais me tourner vers Filerun ou Explorer.

from dockerfiles.

PixiBixi avatar PixiBixi commented on August 25, 2024

Plop

Tu peux vérifier que c'est ok ? :)

PS: L'image utilise maintenant le port 8080

from dockerfiles.

bilyboy785 avatar bilyboy785 commented on August 25, 2024

Toujours pas ..

from dockerfiles.

PixiBixi avatar PixiBixi commented on August 25, 2024

Pense à MAJ l'image : docker pull bixidock/h5ai

Tu as bien fais un docker-compose up -d ? (j'ai testé et ça marche, donc bon :D)

Fait moi voir ton docker-compose.yml

PS: J'ai lancé l'image avec cette ligne pour mes tests :

docker run -it --rm -p 12345:8080 -v /root/dockerfiles/h5ai/lel:/var/www bixidock/h5ai

from dockerfiles.

bilyboy785 avatar bilyboy785 commented on August 25, 2024
h5ai-martin:
    restart: always
    image: bixidock/h5ai
    container_name: h5ai-martin
    ports:
      - 5055:8080
    volumes:
      - /home/martinbouillaud/data:/var/www
    environment:
      - VIRTUAL_HOST=h5.*****.com
      - LETSENCRYPT_HOST=h5.*****.com
      - LETSENCRYPT_EMAIL=contact@*****

from dockerfiles.

bilyboy785 avatar bilyboy785 commented on August 25, 2024

Logs du docker h5ai

[09-Dec-2017 17:23:26] WARNING: Nothing matches the include pattern '/php/php-fpm.d/*.conf' from /usr/local/etc/php-fpm.conf at line 18.
[09-Dec-2017 17:23:26] NOTICE: [pool www] 'user' directive is ignored when FPM is not running as root
[09-Dec-2017 17:23:26] NOTICE: [pool www] 'group' directive is ignored when FPM is not running as root

from dockerfiles.

PixiBixi avatar PixiBixi commented on August 25, 2024

Oui c'pas grave ça

Pour le coup, ton problème vient de ton reverse proxy.

Essaie de lancer la commande que j'ai donnée en modifiant le volume et essaie d'y accéder directement via le port.

from dockerfiles.

bilyboy785 avatar bilyboy785 commented on August 25, 2024

Bizarre ... Ca marchait avant avec le même reverse, domage :(

from dockerfiles.

PixiBixi avatar PixiBixi commented on August 25, 2024

Ca marche toujours lol, c'est juste que jwilder/nginx-proxy (Je suis sur à 99.9% que tu t'en sers) gère très mal les changements de port ou quoi

from dockerfiles.

bilyboy785 avatar bilyboy785 commented on August 25, 2024

Ah oui oui c'est lui ;)

Mais du coup comment je pourrais le refaire fonctionner ce petit con ? :)

from dockerfiles.

Related Issues (5)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.