Files
AdamuSw/deploy-adamu/docker-compose.local.yml
Acentech Dev 2e59cdfe1f
Some checks failed
.NET Core / build (push) Has been cancelled
chore: AdamuSw deploy composes (local test + Coolify/Traefik prod) using self-built image
- deploy-adamu/docker-compose.local.yml: local postgres + adamu-openmu:dev, direct 8080
- deploy-adamu/docker-compose.prod.yml: Coolify/Traefik prod adapted from AdaMu, image swapped to our build
- additive folder (deploy-adamu) to avoid upstream deploy/ merge conflicts
- plan Step5 fixed (-p:ci=true), paths -> deploy-adamu

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-14 19:31:07 +03:00

38 lines
870 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# AdamuSw local test deploy (Traefik/Coolify YOK — doğrudan 8080).
# Amaç: kendi-derlenen image'i lokalde postgres ile ayağa kaldırıp doğrulamak.
services:
openmu-startup:
image: adamu-openmu:dev
container_name: adamu-openmu-startup
ports:
- "8080:8080"
- "55901:55901"
- "55902:55902"
- "55903:55903"
- "55904:55904"
- "55905:55905"
- "55906:55906"
- "44405:44405"
- "55980:55980"
environment:
DB_HOST: database
ASPNETCORE_URLS: http://+:8080
working_dir: /app/
depends_on:
- database
database:
image: postgres
container_name: adamu-database
environment:
POSTGRES_PASSWORD: admin
POSTGRES_DB: openmu
POSTGRES_USER: postgres
ports:
- "5432"
volumes:
- adamu-dbdata:/var/lib/postgresql
volumes:
adamu-dbdata: