mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 15:06:26 +02:00
Added docker baserow role
This commit is contained in:
16
roles/docker-baserow/templates/docker-compose.yml.j2
Normal file
16
roles/docker-baserow/templates/docker-compose.yml.j2
Normal file
@@ -0,0 +1,16 @@
|
||||
version: '2'
|
||||
|
||||
services:
|
||||
baserow:
|
||||
image: baserow/baserow:1.19.1
|
||||
restart: always
|
||||
logging:
|
||||
driver: journald
|
||||
env_file:
|
||||
- ./env
|
||||
volumes:
|
||||
- baserow_data:/baserow/data
|
||||
ports:
|
||||
- "{{http_port}}:80"
|
||||
volumes:
|
||||
baserow_data:
|
10
roles/docker-baserow/templates/env.j2
Normal file
10
roles/docker-baserow/templates/env.j2
Normal file
@@ -0,0 +1,10 @@
|
||||
# Public URL
|
||||
BASEROW_PUBLIC_URL=https://{{ domain }}
|
||||
|
||||
# Email Server Configuration
|
||||
EMAIL_SMTP=True
|
||||
EMAIL_SMTP_HOST={{ system_email_host }}
|
||||
EMAIL_SMTP_PORT={{ system_email_port }}
|
||||
EMAIL_SMTP_USER={{ system_email_username }}
|
||||
EMAIL_SMTP_PASSWORD={{ system_email_password }}
|
||||
EMAIL_SMTP_USE_TLS=tls
|
Reference in New Issue
Block a user