{"id":26150397,"url":"https://github.com/3liz/lizmap-docker-compose","last_synced_at":"2025-04-07T17:08:28.699Z","repository":{"id":37074763,"uuid":"148470802","full_name":"3liz/lizmap-docker-compose","owner":"3liz","description":"Run Lizmap stack with docker-compose","archived":false,"fork":false,"pushed_at":"2024-12-12T07:59:00.000Z","size":291,"stargazers_count":35,"open_issues_count":19,"forks_count":42,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-03-31T16:14:11.931Z","etag":null,"topics":["lizmap","qgis-processing","qgis-server","qgis-wps","wps"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/3liz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-09-12T11:39:20.000Z","updated_at":"2025-03-12T05:11:55.000Z","dependencies_parsed_at":"2023-09-25T02:19:07.077Z","dependency_job_id":"3e574c5a-fd8a-4276-b39a-02a79402eeeb","html_url":"https://github.com/3liz/lizmap-docker-compose","commit_stats":{"total_commits":72,"total_committers":11,"mean_commits":6.545454545454546,"dds":0.5555555555555556,"last_synced_commit":"5c9fa2995eecb861d6c98920e99edd10162d53e4"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3liz%2Flizmap-docker-compose","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3liz%2Flizmap-docker-compose/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3liz%2Flizmap-docker-compose/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3liz%2Flizmap-docker-compose/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/3liz","download_url":"https://codeload.github.com/3liz/lizmap-docker-compose/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247694876,"owners_count":20980733,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["lizmap","qgis-processing","qgis-server","qgis-wps","wps"],"created_at":"2025-03-11T05:59:23.670Z","updated_at":"2025-04-07T17:08:28.664Z","avatar_url":"https://github.com/3liz.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Run Lizmap stack with docker-compose\n\nRun a complete Lizmap stack with test data. \n\n- Lizmap Web Client\n- QGIS Server\n- Redis\n\n**Note**: this is a sample configuration for testing Lizmap web client with QGIS and WPS features.\n\n❗**If you want to use it on a production server, you will need to make adjustments to meet your\nproduction requirements.**\n\n## Requirements\n\n- Docker engine\n- docker-compose v2 \n\n## Quick start\n\nExecute the commands below for your system and open your browser at http://localhost:8090.\n\n### Linux\n\nIn a shell, configure the environment:\n```bash\n./configure.sh configure\n```\nOr if you want to test specific version (here last 3.X.Y version):\n```bash\nLIZMAP_VERSION_TAG=3.8 ./configure.sh configure\n```\n\nRun lizmap:\n```bash\ndocker compose pull\ndocker compose up\n```\n\nTo run lizmap visible to another system, prefix the docker command with a variable. NB! This will be plain HTTP with no encryption and not suitable for production.\n```bash\nLIZMAP_PORT=EXTERNAL_IP_HERE:80 docker compose up\n```\n\n### Windows\n\nIn order to user Docker on Windows you may install [Docker desktop for Windows](https://docs.docker.com/desktop/windows/install/)\n\n\nIf you have some distribution installed (Ubuntu, ...) in WSL, you can simply run the linux command as above, once in it.\n\nOr in PowerShell, run the following command to set up some files\n```bash\nconfigure.bat\n``` \nYou can then launch the docker using\n```bash\ndocker compose --env-file .env.windows up\n```\nOr if you want to test specific version, you can edit `.env.windows` and change (here last 3.X.Y version):\n\n```bash\nLIZMAP_VERSION_TAG=3.8\n```\n\n## Running the first time\n\nThe previous commands create a docker-compose environment and run the stack\n\nThe Lizmap service will start two toys projects that you will have to configure in the Lizmap\ninterface.\n\nSee the [Lizmap documentation](https://docs.lizmap.com) for how to configure Lizmap at first run.\n\nDefault login is `admin`, password `admin`. It will be asked to change it at first login.\n\n## Add your own project\n\nYou need to :\n* create a directory in `lizmap/instances`\n* visit http://localhost:8090/admin.php/admin/maps/\n* in the Lizmap admin panel, add the directory you created\n* add one or more QGIS projects with the Lizmap CFG file in the directory\n\n## Reset the configuration\n\nIn command line\n\n```bash\n./configure.sh  clean \n```\n\nThis will remove all previous configuration. You will have to reenter the configuration in Lizmap\nas for the first run.\n\n## References\n\nFor more information, refer to the [docker-compose documentation](https://docs.docker.com/compose/)\n\nSee also:\n\n- https://github.com/3liz/lizmap-web-client\n- https://github.com/3liz/py-qgis-server\n\nDocker on Windows:\n\n- https://docs.docker.com/desktop/windows/\n- https://docs.microsoft.com/fr-fr/windows/dev-environment/docker/overview\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F3liz%2Flizmap-docker-compose","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F3liz%2Flizmap-docker-compose","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F3liz%2Flizmap-docker-compose/lists"}