setup baserow #198
4 changed files with 25 additions and 1 deletions
3
docker-compose/baserow/.env
Normal file
3
docker-compose/baserow/.env
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
SECRET_KEY: hallowelt
|
||||||
|
DATABASE_PASSWORD: hallowelt
|
||||||
|
REDIS_PASSWORD: hallowelt
|
19
docker-compose/baserow/docker-compose.yml.j2
Normal file
19
docker-compose/baserow/docker-compose.yml.j2
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
---
|
||||||
|
# https://baserow.io/docs/installation%2Finstall-with-docker-compose
|
||||||
|
services:
|
||||||
|
baserow:
|
||||||
|
container_name: baserow
|
||||||
|
image: baserow/baserow:1.27.2
|
||||||
|
environment:
|
||||||
|
BASEROW_PUBLIC_URL: 'http://docker10.mgrote.net:280' # todo
|
||||||
|
ports:
|
||||||
|
- "280:80"
|
||||||
|
- "2443:443"
|
||||||
|
volumes:
|
||||||
|
- baserow_data:/baserow/data
|
||||||
|
volumes:
|
||||||
|
baserow_data:
|
||||||
|
|
||||||
|
|
||||||
|
# traefik
|
||||||
|
# ldap
|
|
@ -32,7 +32,7 @@ services:
|
||||||
|
|
||||||
######## Postgres ########
|
######## Postgres ########
|
||||||
mf-db17:
|
mf-db17:
|
||||||
container_name: "mf-db17"
|
container_name: "mf-db"
|
||||||
image: "postgres:17.0"
|
image: "postgres:17.0"
|
||||||
restart: always
|
restart: always
|
||||||
environment:
|
environment:
|
||||||
|
|
|
@ -66,6 +66,8 @@ compose_files:
|
||||||
state: present
|
state: present
|
||||||
- name: act-runner
|
- name: act-runner
|
||||||
state: present
|
state: present
|
||||||
|
- name: baserow
|
||||||
|
state: present
|
||||||
|
|
||||||
### oefenweb.ufw
|
### oefenweb.ufw
|
||||||
ufw_rules:
|
ufw_rules:
|
||||||
|
|
Loading…
Reference in a new issue