mirror of
https://github.com/SrIzan10/hc-harbor.git
synced 2026-05-01 10:45:21 +00:00
Fix notification job missing class name
This commit is contained in:
33
docker-compose.yml
Normal file
33
docker-compose.yml
Normal file
@@ -0,0 +1,33 @@
|
||||
services:
|
||||
web:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.dev
|
||||
ports:
|
||||
- "3000:3000"
|
||||
volumes:
|
||||
- .:/app
|
||||
- bundle_cache:/usr/local/bundle
|
||||
environment:
|
||||
- RAILS_ENV=development
|
||||
- DATABASE_URL=postgres://postgres:secureorpheus123@db:5432/app_development
|
||||
- POSTGRES_HOST=db
|
||||
- POSTGRES_USER=postgres
|
||||
- POSTGRES_PASSWORD=secureorpheus123
|
||||
depends_on:
|
||||
- db
|
||||
|
||||
db:
|
||||
image: postgres:16
|
||||
volumes:
|
||||
- harbor_postgres_data:/var/lib/postgresql/data
|
||||
environment:
|
||||
- POSTGRES_PASSWORD=secureorpheus123
|
||||
- POSTGRES_USER=postgres
|
||||
- POSTGRES_DB=app_development
|
||||
ports:
|
||||
- "5432:5432"
|
||||
|
||||
volumes:
|
||||
harbor_postgres_data:
|
||||
bundle_cache:
|
||||
Reference in New Issue
Block a user