API URL per env setzen

This commit is contained in:
2025-08-13 07:14:04 +02:00
parent b7f22c2d5e
commit 1919d540fb
8 changed files with 38 additions and 2 deletions
+12
View File
@@ -35,12 +35,24 @@
### Start Development Environment
```bash
cd /data/dev/bamort/docker
# Option 1: Use default configuration
docker-compose -f docker-compose.dev.yml up -d
# Option 2: Use custom environment variables
cp .env.example .env.dev
# Edit .env.dev with your settings
docker-compose -f docker-compose.dev.yml --env-file .env.dev up -d
```
### Start Production Environment
```bash
cd /data/dev/bamort/docker
# Create .env file with your configuration
cp .env.example .env
# Edit .env with your settings
docker-compose up -d
```