Skip to content

Commit

Permalink
chore(codebase):updated half the codebase and implemented module alia…
Browse files Browse the repository at this point in the history
…sing for cleaner imports
  • Loading branch information
urizennnn committed Feb 26, 2025
1 parent 4966505 commit 2c2a9fd
Show file tree
Hide file tree
Showing 124 changed files with 22,378 additions and 634 deletions.
36 changes: 36 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
services:
postgres:
container_name: postgres-boiler
image: postgres:latest
ports:
- '5432:5432'
environment:
- POSTGRES_USER=${DB_USERNAME}
- POSTGRES_PASSWORD=${DB_PASSWORD}
- POSTGRES_DB=${DB_DATABASE}
volumes:
- ./data/db:/var/lib/postgresql/data
restart: always

adminer:
image: adminer
container_name: adminer-boiler
ports:
- '8080:8080'
restart: always
depends_on:
- postgres

redis:
image: redis:latest
container_name: redis-boiler
ports:
- '6379:6379'
command: ['redis-server', '--appendonly', 'yes']
volumes:
- redis_data:/data
restart: always

volumes:
data:
redis_data:
Loading

0 comments on commit 2c2a9fd

Please sign in to comment.