You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello I`m running partDB with Docker using the stable composed file serverd here in the repo.
partDB is running fine but the container is not reachable by https requests.
to link to the https requests I insert in the port part:
"192.168.X.X:8899:80"
"192.168.X.X:8844:443"
requesting 192.168.X.X:8899 is good but only http
Did i need to generate a certifciate inside the container?
How to enable https for the container?
I didn´t find any dokumentaion handling https request.
Attached my composed file:
`version: '3'
services:
partdb:
image: jbtronics/part-db:stable
ports:
#Replace 8888 with the port, under which Part-DB should appear
- "192.168.X.X:8899:80"
- "192.168.X.X:8844:443"
depends_on:
- database
volumes:
- partdb-data:/var/www/html/data
restart: always
database:
image: mariadb:latest
volumes:
- partdb-database:/var/lib/mysql
environment:
# Set MYSQL_ROOT_PASSWORD to a unique password!!
MYSQL_ROOT_PASSWORD: xxxxxxxxx
MYSQL_DATABASE: partdb
restart: always`
The text was updated successfully, but these errors were encountered:
Aktuelle versuche ich https bei dem container zum laufen zu bekommen.
Leider ist mir nicht ganz klar wie das hier ungestetzt werden soll.
Erwartet hab ich das ich den Port freischalten und dann irgendwo das Zertifikat defenieren kann.
Ich hab Leider nichts gefunden wo ich für diesen Container ein Zertifikat(self signed or letsEncrypt) hinterlegen kann.
Hello I`m running partDB with Docker using the stable composed file serverd here in the repo.
partDB is running fine but the container is not reachable by https requests.
to link to the https requests I insert in the port part:
requesting 192.168.X.X:8899 is good but only http
Did i need to generate a certifciate inside the container?
How to enable https for the container?
I didn´t find any dokumentaion handling https request.
Attached my composed file:
`version: '3'
services:
partdb:
image: jbtronics/part-db:stable
ports:
#Replace 8888 with the port, under which Part-DB should appear
- "192.168.X.X:8899:80"
- "192.168.X.X:8844:443"
depends_on:
- database
volumes:
- partdb-data:/var/www/html/data
restart: always
database:
image: mariadb:latest
volumes:
- partdb-database:/var/lib/mysql
environment:
# Set MYSQL_ROOT_PASSWORD to a unique password!!
MYSQL_ROOT_PASSWORD: xxxxxxxxx
MYSQL_DATABASE: partdb
restart: always`
The text was updated successfully, but these errors were encountered: