mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
- 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.
16 lines
278 B
YAML
16 lines
278 B
YAML
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: {} |