22 lines
649 B
YAML
22 lines
649 B
YAML
version: "3.2"
|
|
|
|
services:
|
|
cronicle:
|
|
build:
|
|
context: .
|
|
hostname: localhost
|
|
ports:
|
|
- 3012:3012
|
|
environment:
|
|
- CRONICLE_base_app_url=http://localhost:3012
|
|
- CRONICLE_WebServer__http_port=3012
|
|
- CRONICLE_WebServer__https_port=443
|
|
- CRONICLE_web_socket_use_hostnames=1
|
|
- CRONICLE_server_comm_use_hostnames=1
|
|
- CRONICLE_web_direct_connect=0
|
|
- CRONICLE_SETUP=true
|
|
volumes:
|
|
- ./data:/opt/cronicle/data:rw
|
|
- ./logs:/opt/cronicle/logs:rw
|
|
- ./config:/opt/cronicle/conf:rw
|