00796a42f1
Co-authored-by: David Larlet <3556+davidbgk@users.noreply.github.com>
1.1 KiB
1.1 KiB
Docker
There is now an official uMap image.
To run it with docker compose, use a docker-compose.yml
like this:
version: '3'
services:
db:
image: postgis/postgis:14-3.3-alpine
environment:
- POSTGRES_HOST_AUTH_METHOD=trust
volumes:
- db:/var/lib/postgresql/data
app:
image: umap/umap:x.x.x
ports:
- "8001:8000"
environment:
- DATABASE_URL=postgis://postgres@db/postgres
- SECRET_KEY=some-long-and-weirdly-unrandom-secret-key
- SITE_URL=https://umap.local/
- UMAP_ALLOW_ANONYMOUS=True
- DEBUG=1
volumes:
- data:/srv/umap/uploads
volumes:
data:
db:
Create superuser
With docker-compose, run docker-compose run app /venv/bin/umap createsuperuser
Custom settings
Some basic settings are available through env vars (see https://github.com/umap-project/umap/blob/master/umap/settings/base.py),
but if you need more custom ones (like custom OAuth configuration), the easiest
way is to push a settings file to /etc/umap/umap.conf
.