Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker_clash/demo/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:
image: quay.io/labnow/clash:latest
container_name: svc-proxy-clash
hostname: svc-proxy-clash
restart: unless-stopped
restart: always
network_mode: host
init: true
cap_add:
Expand Down
6 changes: 4 additions & 2 deletions docker_nocobase/demo/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,21 @@ services:
# su postgres && psql -d nocobase

svc-nocobase:
image: quay.io/labnow/nocobase
container_name: svc-nocobase
hostname: svc-nocobase
image: quay.io/labnow/nocobase:latest
pull_policy: always
restart: unless-stopped
depends_on: ["db-postgres-common"]
environment:
TZ: Asia/Shanghai
LOCALE: zh-CN
DB_DIALECT: postgres
DB_HOST: db-postgres-common
DB_PORT: 5432
DB_USER: postgres
DB_PASSWORD: postgres
DB_DATABASE: nocobase
LOCALE: zh-CN
# INIT_ROOT_USERNAME: nocobase
# INIT_ROOT_EMAIL: admin@nocobase.com
# INIT_ROOT_PASSWORD: admin123
Expand Down
Loading