Initial
Some checks failed
Build and Publish Docker Image / test (push) Failing after 5s
Build and Publish Docker Image / build-and-push (push) Has been skipped
Build and Publish Docker Image / security-scan (push) Has been skipped

This commit is contained in:
Andras Schmelczer 2026-03-23 07:44:26 +00:00
commit 3f60b72c3b
48 changed files with 6599 additions and 0 deletions

54
compose/projects.yml Normal file
View file

@ -0,0 +1,54 @@
name: active
services:
declared:
build:
context: /volumes/declared-server
container_name: declared
environment:
NODE_ENV: production
TZ: $TIME_ZONE
networks:
- local-network
restart: unless-stopped
user: "1000"
init: true
tty: true
life-towers:
build:
context: /volumes/life-towers
container_name: life_towers
depends_on:
- towers-db
environment:
TZ: $TIME_ZONE
networks:
- towers-network
- local-network
restart: unless-stopped
user: "1000"
init: true
tty: true
towers-db:
image: postgres:15.3-alpine3.18
container_name: towers_db
volumes:
- /volumes/life-towers/db:/var/lib/postgresql/data
- /volumes/life-towers/src/schema.sql:/docker-entrypoint-initdb.d/init.sql
environment:
POSTGRES_USER: storebackend
POSTGRES_PASSWORD: UKLpn6y4j4AjmBuB
POSTGRES_DB: store
TZ: $TIME_ZONE
networks:
- towers-network
restart: unless-stopped
user: "1000"
init: true
tty: true
networks:
local-network:
towers-network:
internal: true