1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-01-30 10:26:29 +00:00
bramw_baserow/plugin-boilerplate/{{ cookiecutter.project_slug }}/docker-compose.yml

17 lines
No EOL
389 B
YAML

version: "3.4"
services:
{{ cookiecutter.project_slug }}:
container_name: {{ cookiecutter.project_slug }}
image: {{ cookiecutter.project_slug }}
build:
context: .
dockerfile: Dockerfile
ports:
- "80:80"
- "443:443"
environment:
BASEROW_PUBLIC_URL: http://localhost
volumes:
- baserow_data:/baserow/data
volumes:
baserow_data: