mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-01-30 10:26:29 +00:00
752 B
752 B
Installing Baserow with Traefik
If you are using Traefik the example below will show you how to configure Baserow to work with Traefik.
Example Traefik compose file
See below for an example docker-compose file that will enable Baserow with Traefik.
version: "3.4"
services:
baserow:
image: baserow/baserow:1.30.1
container_name: baserow
labels:
# Explicitly tell Traefik to expose this container
- "traefik.enable=true"
# The domain the service will respond to
- "traefik.http.routers.baserow.rule=Host(`domain.com`)"
environment:
- BASEROW_PUBLIC_URL=https://domain.com
volumes:
- baserow_data:/baserow/data
volumes:
baserow_data: