mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-01-30 10:26:29 +00:00
17 lines
No EOL
389 B
YAML
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: |