mirror of
https://github.com/crocofied/CoreControl.git
synced 2025-12-24 19:07:47 +00:00
30 lines
679 B
YAML
30 lines
679 B
YAML
services:
|
|
web:
|
|
image: haedlessdev/corecontrol:latest
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
JWT_SECRET: RANDOM_SECRET # Replace with a secure random string
|
|
DATABASE_URL: "postgresql://postgres:postgres@db:5432/postgres"
|
|
depends_on:
|
|
- db
|
|
- agent
|
|
|
|
agent:
|
|
image: haedlessdev/corecontrol-agent:latest
|
|
environment:
|
|
DATABASE_URL: "postgresql://postgres:postgres@db:5432/postgres"
|
|
|
|
db:
|
|
image: postgres:17
|
|
restart: always
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_DB: postgres
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
postgres_data:
|