mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 15:01:05 +01:00
16 lines
263 B
Plaintext
16 lines
263 B
Plaintext
|
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:
|