24 lines
690 B
YAML
24 lines
690 B
YAML
version: '3.9'
|
|
services:
|
|
chartbrew:
|
|
container_name: chartbrew
|
|
image: razvanilin/chartbrew
|
|
environment:
|
|
- VITE_APP_API_HOST=https://chartbrew.home.domroese.eu
|
|
- VITE_APP_CLIENT_PORT=4018
|
|
- VITE_APP_CLIENT_HOST=https://api.chartbrew.home.domroese.eu
|
|
- CB_REDIS_PASSWORD=Diavid9600
|
|
- CB_REDIS_PORT=6379
|
|
- CB_REDIS_HOST=host.docker.internal
|
|
- CB_DB_PASSWORD=Diavid9600
|
|
- CB_DB_USERNAME=root
|
|
- CB_DB_NAME=chartbrew
|
|
- CB_DB_PORT=3306
|
|
- CB_DB_HOST=host.docker.internal
|
|
- CB_API_PORT=4019
|
|
- CB_API_HOST=0.0.0.0
|
|
- CB_ENCRYPTION_KEY=your_32_bytes_key
|
|
ports:
|
|
- '4018:4018'
|
|
- '4019:4019'
|