[GH-ISSUE #212] Change instructions for RPI #184

Closed
opened 2026-02-26 06:31:14 +03:00 by kerem · 8 comments
Owner

Originally created by @skluthe on GitHub (Oct 20, 2019).
Original GitHub issue: https://github.com/NginxProxyManager/nginx-proxy-manager/issues/212

The current docker-compose doesn't include the correct image for a raspberry pi. The official Mariadb image doesn't have an arm7 option in the manifest. The correct one to use for a raspberry pi is linuxserver/mariadb. I don't think you need to change it in the docker-compose file but it may be a good idea to include that info in the read-me.

Originally created by @skluthe on GitHub (Oct 20, 2019). Original GitHub issue: https://github.com/NginxProxyManager/nginx-proxy-manager/issues/212 The current docker-compose doesn't include the correct image for a raspberry pi. The official Mariadb image doesn't have an arm7 option in the manifest. The correct one to use for a raspberry pi is linuxserver/mariadb. I don't think you need to change it in the docker-compose file but it may be a good idea to include that info in the read-me.
kerem 2026-02-26 06:31:14 +03:00
Author
Owner

@skluthe commented on GitHub (Oct 20, 2019):

This is incorrect. Sorry about that. The default instructions will not work if you're running standard 32 bit raspbian.

<!-- gh-comment-id:544284373 --> @skluthe commented on GitHub (Oct 20, 2019): This is incorrect. Sorry about that. The default instructions will not work if you're running standard 32 bit raspbian.
Author
Owner

@khannurien commented on GitHub (Oct 28, 2019):

Under Raspbian (32-bit), just use webhippie/mariadb:latest as NPM requires MariaDB 10.2 for JSON fields.

  nginx:
    depends_on:
      - mariadb
    image: jc21/nginx-proxy-manager:latest
    restart: always
    ports:
      - "80:80"
      - "81:81"
      - "443"
    volumes:
      - ./config.json:/app/config/production.json
      - nginx_data:/data
      - nginx_letsencrypt:/etc/letsencrypt

  mariadb:
    image: webhippie/mariadb:latest
    restart: always
    expose:
      - "3306"
    volumes:
      - mariadb_data:/var/lib/mysql
      - mariadb_backup:/var/lib/backup
    environment:
      - MARIADB_ROOT_PASSWORD=m0nM0td3p4553r007!
<!-- gh-comment-id:546989171 --> @khannurien commented on GitHub (Oct 28, 2019): Under Raspbian (32-bit), just use `webhippie/mariadb:latest` as NPM requires MariaDB 10.2 for JSON fields. ``` nginx: depends_on: - mariadb image: jc21/nginx-proxy-manager:latest restart: always ports: - "80:80" - "81:81" - "443" volumes: - ./config.json:/app/config/production.json - nginx_data:/data - nginx_letsencrypt:/etc/letsencrypt mariadb: image: webhippie/mariadb:latest restart: always expose: - "3306" volumes: - mariadb_data:/var/lib/mysql - mariadb_backup:/var/lib/backup environment: - MARIADB_ROOT_PASSWORD=m0nM0td3p4553r007! ```
Author
Owner

@jeffest-jeff commented on GitHub (Jan 3, 2020):

I forked this and added RPI documentation alongside @jc21 's documentation.
jeff89179/nginx-proxy-manager

<!-- gh-comment-id:570685232 --> @jeffest-jeff commented on GitHub (Jan 3, 2020): I forked this and added RPI documentation alongside @jc21 's documentation. jeff89179/nginx-proxy-manager
Author
Owner

@jc21 commented on GitHub (Jan 5, 2020):

Feel free to submit a pull request with that documentation :)

<!-- gh-comment-id:570955994 --> @jc21 commented on GitHub (Jan 5, 2020): Feel free to submit a pull request with that documentation :)
Author
Owner

@jeffest-jeff commented on GitHub (Jan 6, 2020):

Ok, let me clean it up on my fork and i'll submit it.

Jeff Kleinhenz

On Sun, Jan 5, 2020 at 4:48 PM jc21 notifications@github.com wrote:

Feel free to submit a pull request with that documentation :)


You are receiving this because you commented.
Reply to this email directly, view it on GitHub
https://github.com/jc21/nginx-proxy-manager/issues/212?email_source=notifications&email_token=AFAGAWYW62ZKH5SHHF4NCG3Q4JPSJA5CNFSM4JCVCIK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEIEBRWQ#issuecomment-570955994,
or unsubscribe
https://github.com/notifications/unsubscribe-auth/AFAGAWYKNHZELHQE2HH5TIDQ4JPSJANCNFSM4JCVCIKQ
.

<!-- gh-comment-id:571273085 --> @jeffest-jeff commented on GitHub (Jan 6, 2020): Ok, let me clean it up on my fork and i'll submit it. *Jeff Kleinhenz* On Sun, Jan 5, 2020 at 4:48 PM jc21 <notifications@github.com> wrote: > Feel free to submit a pull request with that documentation :) > > — > You are receiving this because you commented. > Reply to this email directly, view it on GitHub > <https://github.com/jc21/nginx-proxy-manager/issues/212?email_source=notifications&email_token=AFAGAWYW62ZKH5SHHF4NCG3Q4JPSJA5CNFSM4JCVCIK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEIEBRWQ#issuecomment-570955994>, > or unsubscribe > <https://github.com/notifications/unsubscribe-auth/AFAGAWYKNHZELHQE2HH5TIDQ4JPSJANCNFSM4JCVCIKQ> > . >
Author
Owner

@chaptergy commented on GitHub (May 11, 2021):

@jeff89179 Do you still want to open a PR?

<!-- gh-comment-id:838914254 --> @chaptergy commented on GitHub (May 11, 2021): @jeff89179 Do you still want to open a PR?
Author
Owner

@jeffest-jeff commented on GitHub (May 11, 2021):

@jeff89179 Do you still want to open a PR?

Apologies, but no. I haven't look at this since last January. My home lab has been simplified drastically and I haven't been running as many containers to where I ended up keeping this in place. If I do get back to this, I'll work on updating my documentation and submit a request. But at this time - no.

<!-- gh-comment-id:839183080 --> @jeffest-jeff commented on GitHub (May 11, 2021): > @jeff89179 Do you still want to open a PR? Apologies, but no. I haven't look at this since last January. My home lab has been simplified drastically and I haven't been running as many containers to where I ended up keeping this in place. If I do get back to this, I'll work on updating my documentation and submit a request. But at this time - no.
Author
Owner

@chaptergy commented on GitHub (May 12, 2021):

Allright, but thanks! For those coming here with this issue, here is a link to his explanation.

<!-- gh-comment-id:839744608 --> @chaptergy commented on GitHub (May 12, 2021): Allright, but thanks! For those coming here with this issue, here is a [link to his explanation](https://github.com/jeff89179/nginx-proxy-manager/blob/master/doc/Raspberry%20Pi-INSTALL.md).
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/nginx-proxy-manager-NginxProxyManager#184
No description provided.