1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-21 17:34:25 +04:00

Introduce Docker Compose Config to build and run tabler locally (#1896)

* introduce docker compose config

* introduce docker compose config

* Create lucky-impalas-smash.md

---------

Co-authored-by: Paweł Kuna <1282324+codecalm@users.noreply.github.com>
This commit is contained in:
Sebastian
2024-06-14 17:15:13 +02:00
committed by GitHub
parent 0195f9bd42
commit 5e7e0dd34e
3 changed files with 25 additions and 0 deletions

15
docker-compose.yml Normal file
View File

@@ -0,0 +1,15 @@
---
version: "3.3"
services:
tabler:
image: tabler
container_name: tabler
build: .
ports:
- 3000:3000
- 3001:3001
volumes:
- ./src:/app/src
- ./_config.yml:/app/_config.yml
tty: true