This commit is contained in:
=
2025-05-28 15:09:39 -05:00
parent 448ff2ffcc
commit 40a5086636
2 changed files with 59 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
networks:
bracket_lan:
driver: bridge
volumes:
bracket_pg_data:
services:
bracket-backend:
container_name: bracket-backend
depends_on:
- postgres
environment:
ENVIRONMENT: DEVELOPMENT
CORS_ORIGINS: https://bracket.home.domroese.eu
PG_DSN: postgresql://bracket_dev:bracket_dev@postgres:5432/bracket_dev
image: ghcr.io/evroon/bracket-backend
networks:
- bracket_lan
ports:
- 8400:8400
restart: unless-stopped
volumes:
- /home/soenke/docker-data/bracket/backend/static:/app/static
bracket-frontend:
container_name: bracket-frontend
environment:
NEXT_PUBLIC_API_BASE_URL: https://backend.bracket.home.domroese.eu
image: ghcr.io/evroon/bracket-frontend
ports:
- 3000:3000
restart: unless-stopped
postgres:
environment:
POSTGRES_DB: bracket_dev
POSTGRES_PASSWORD: bracket_dev
POSTGRES_USER: bracket_dev
image: postgres
networks:
- bracket_lan
restart: always
volumes:
- bracket_pg_data:/var/lib/postgresql/data

View File

@@ -0,0 +1,14 @@
services:
freshrss:
image: lscr.io/linuxserver/freshrss:latest
container_name: freshrss
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
volumes:
- /home/soenke/docker-data/freshrss:/config
ports:
- 8884:80
restart: unless-stopped