Solved baserow bugs

This commit is contained in:
Kevin Veen-Birkenbach 2024-01-06 12:10:16 +01:00
parent 4ae1776a4b
commit 2fda99fa1d
2 changed files with 9 additions and 5 deletions

View File

@ -6,8 +6,9 @@ services:
{% include 'templates/docker-service-' + database_type + '.yml.j2' %}
baserow:
application:
image: baserow/baserow:1.19.1
container_name: baserow-application
restart: always
logging:
driver: journald
@ -17,8 +18,13 @@ services:
- data:/baserow/data
ports:
- "{{http_port}}:80"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:80/"]
interval: 1m
timeout: 10s
retries: 3
{% include 'templates/docker-container-networks.yml.j2' %}
{% include 'templates/docker-container-depends-on-just-database.yml.j2' %}
{% include 'templates/docker-container-depends-on-database-redis.yml.j2' %}
{% include 'templates/docker-compose-volumes.yml.j2' %}
data:

View File

@ -15,6 +15,4 @@ DATABASE_HOST={{ database_host }}
DATABASE_PORT=5432
DATABASE_PASSWORD={{ database_password }}
REDIS_HOST=redis
REDIS_PORT=6379
REDIS_PASSWORD=
REDIS_URL=redis://redis:6379