passbolt / passbolt_docker

Get started with Passbolt CE using docker!
https://passbolt.com
GNU Affero General Public License v3.0
876 stars 192 forks source link

Docker compose not working #223

Closed Vijaygawate closed 6 months ago

Vijaygawate commented 8 months ago

I am trying to bring up passbolt using docker compose but I am getting below error I am not sure if anything is wrong I am doing

Below is the docker-compose file I am using

version: "3.9" services: db: image: mariadb:10.11 restart: unless-stopped environment: MYSQL_RANDOM_ROOT_PASSWORD: "true" MYSQL_DATABASE: "passbolt" MYSQL_USER: "passbolt" MYSQL_PASSWORD: "P4ssb0lt" volumes:

volumes: database_volume: gpg_volume: jwt_volume:

Screenshot from 2024-02-20 22-03-00

Gamabunta57 commented 8 months ago

Hello @Vijaygawate

You might have a default Nginx page here. What I see from your docker file is that the URL you should point at is https://passbolt.local/.

You could either change the APP_FULL_BASE_URL in your docker file or you could set passbolt.local pointing to the right IP (probably 127.0.0.1 in your case) in your OS hosts file.

Hope it helps