mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
Add Baikal blueprint with Docker Compose and configuration files
- Introduced Docker Compose setup for Baikal service, including environment variables and volume configuration. - Added logo for Baikal. - Created template.toml for Baikal with default variables for configuration.
This commit is contained in:
parent
7d54a2eb20
commit
18ee7569e2
16
blueprints/baikal/docker-compose.yml
Normal file
16
blueprints/baikal/docker-compose.yml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
version: "3.8"
|
||||||
|
services:
|
||||||
|
baikal:
|
||||||
|
image: ckulka/baikal:nginx-php8.2
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- 80
|
||||||
|
environment:
|
||||||
|
- TZ=UTC
|
||||||
|
volumes:
|
||||||
|
- config:/var/www/baikal/config
|
||||||
|
- data:/var/www/baikal/Specific
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
config: {}
|
||||||
|
data: {}
|
BIN
blueprints/baikal/logo.png
Normal file
BIN
blueprints/baikal/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.9 KiB |
8
blueprints/baikal/template.toml
Normal file
8
blueprints/baikal/template.toml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
[variables]
|
||||||
|
main_domain = "${domain}"
|
||||||
|
|
||||||
|
[config]
|
||||||
|
[[config.domains]]
|
||||||
|
serviceName = "baikal"
|
||||||
|
port = 80
|
||||||
|
host = "${main_domain}"
|
Loading…
Reference in New Issue
Block a user