This commit is contained in:
vladp
2026-03-30 21:43:09 +07:00
commit b5951c3e46
15 changed files with 590 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
version: '3.9'
services:
admin:
build: .
container_name: admin-backend
ports:
- "8082:8080"
environment:
SPRING_PROFILES_ACTIVE: prod
POSTGRES_HOST: db
POSTGRES_PORT: 5432
POSTGRES_DB: no_copy_
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
networks:
- app-network
restart: unless-stopped
networks:
app-network:
external: true