56 lines
No EOL
1.3 KiB
Text
56 lines
No EOL
1.3 KiB
Text
---
|
|
services:
|
|
api: &api
|
|
image: jhumanj/opnform-api:latest
|
|
environment: &api-environment # Add this anchor
|
|
DB_HOST: db
|
|
REDIS_HOST: redis
|
|
DB_DATABASE: ${DB_DATABASE:-forge}
|
|
DB_USERNAME: ${DB_USERNAME:-forge}
|
|
DB_PASSWORD: ${DB_PASSWORD:-forge}
|
|
DB_CONNECTION: ${DB_CONNECTION:-pgsql}
|
|
FILESYSTEM_DISK: local
|
|
LOCAL_FILESYSTEM_VISIBILITY: public
|
|
env_file:
|
|
- ./api/.env
|
|
volumes:
|
|
- opnform_storage:/usr/share/nginx/html/storage:rw
|
|
|
|
api-worker:
|
|
image: jhumanj/opnform-api:latest
|
|
command: php artisan queue:work
|
|
environment:
|
|
<<: *api-environment
|
|
IS_API_WORKER: "true"
|
|
env_file:
|
|
- ./api/.env
|
|
volumes:
|
|
- opnform_storage:/usr/share/nginx/html/storage:rw
|
|
|
|
ui:
|
|
image: jhumanj/opnform-client:latest
|
|
env_file:
|
|
- ./client/.env
|
|
|
|
redis:
|
|
image: redis:7
|
|
|
|
db:
|
|
image: postgres:16
|
|
environment:
|
|
POSTGRES_DB: ${DB_DATABASE:-forge}
|
|
POSTGRES_USER: ${DB_USERNAME:-forge}
|
|
POSTGRES_PASSWORD: ${DB_PASSWORD:-forge}
|
|
volumes:
|
|
- postgres-data:/var/lib/postgresql/data
|
|
|
|
ingress:
|
|
image: nginx:1
|
|
volumes:
|
|
- ./docker/nginx.conf:/etc/nginx/templates/default.conf.template
|
|
ports:
|
|
- 80:80
|
|
|
|
volumes:
|
|
postgres-data:
|
|
opnform_storage: |