Skip to content

Latest commit

 

History

History

tests

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Run Lizmap stack with docker compose

Steps:

  • Launch Lizmap with docker compose

    # Clean previous versions (optional)
    make clean
    
    # Run the different services (default is Lizmap 3.6)
    make run
    
    # or for older lizmap
    make run LIZMAP_VERSION_TAG=3.5
    
  • If you run Lizmap 3.6+, install the altiProfil modules with

    make install-module
    
  • Open your browser at http://localhost:9012

For more information, refer to the docker compose documentation

Access to the dockerized PostgreSQL instance

You can access the docker PostgreSQL test database lizmap from your host by configuring a service file. The service file can be stored in your user home ~/.pg_service.conf and should contain this section

[lizmap-altiprofil]
dbname=lizmap
host=localhost
port=9097
user=lizmap
password=lizmap1234!

Then you can use any PostgreSQL client (psql, QGIS, PgAdmin, DBeaver) and use the service instead of the other credentials (host, port, database name, user and password).

psql service=lizmap-altiprofil

Access to the lizmap container

If you want to enter into the lizmap container to execute some commands, execute make shell.