mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 14:46:13 +00:00
32 lines
690 B
YAML
32 lines
690 B
YAML
version: "3"
|
|
networks:
|
|
nocobase:
|
|
driver: bridge
|
|
services:
|
|
app:
|
|
image: nocobase/nocobase:main
|
|
networks:
|
|
- nocobase
|
|
environment:
|
|
- DB_DIALECT=postgres
|
|
- DB_HOST=postgres
|
|
- DB_DATABASE=nocobase
|
|
- DB_USER=nocobase
|
|
- DB_PASSWORD=nocobase
|
|
- LOCAL_STORAGE_BASE_URL=/storage/uploads
|
|
volumes:
|
|
- ./storage:/app/nocobase/storage
|
|
ports:
|
|
- "13000:80"
|
|
depends_on:
|
|
- postgres
|
|
postgres:
|
|
image: postgres:10
|
|
restart: always
|
|
command: postgres -c wal_level=logical
|
|
environment:
|
|
POSTGRES_USER: nocobase
|
|
POSTGRES_DB: nocobase
|
|
POSTGRES_PASSWORD: nocobase
|
|
networks:
|
|
- nocobase |