* Updated repository address.
All checks were successful
Build docker image / build_docker_image (push) Successful in 3m53s

This commit is contained in:
2025-05-03 10:44:50 +02:00
parent 96d6745171
commit e9b9f3c9aa
2 changed files with 13 additions and 2 deletions

View File

@@ -110,13 +110,13 @@ docker run \
#### 6.2 Running with docker compose
#### 6.2.1 Create docker compose file `docker-compose.yaml`:
#### 6.2.1 Create docker compose file [`docker-compose.yaml`](res/docker-compose.yaml):
```yaml
---
services:
backend:
image: git.magrathea.hu/proxima/backend:latest
image: proxima.goliath.hu/proxima/backend:latest
container_name: backend
ports:
- "9000:9000"

11
res/docker-compose.yaml Normal file
View File

@@ -0,0 +1,11 @@
---
services:
backend:
image: proxima.goliath.hu/proxima/backend:latest
container_name: backend
ports:
- "9000:9000"
volumes:
- "./volumes/backend/env/.env.config:/app/Backend/.env.config"
- "./volumes/backend/database/:/app/Backend/database/sqlite/"
restart: unless-stopped