chore: add local build docker-compose file
This commit is contained in:
parent
10ad0ced9d
commit
f6bb213c78
@ -8,6 +8,6 @@ ALLOW_REGISTER=
|
||||
WEBSITE_ID=
|
||||
|
||||
# For secury
|
||||
JWT_SECRET=some-random-string # default is `daily string`
|
||||
JWT_SECRET=replace-with-random-string # default is `daily string`
|
||||
JWT_ISSUER= # default is `tianji.msgbyte.com`
|
||||
JWT_AUDIENCE= # default is `msgbyte.com`
|
||||
|
32
docker-compose.yml
Normal file
32
docker-compose.yml
Normal file
@ -0,0 +1,32 @@
|
||||
version: '3'
|
||||
services:
|
||||
tianji:
|
||||
image: tianji
|
||||
build:
|
||||
context: .
|
||||
ports:
|
||||
- "12345:12345"
|
||||
environment:
|
||||
DATABASE_URL: postgresql://tianji:tianji@db:5432/tianji
|
||||
JWT_SECRET: replace-me-with-a-random-string
|
||||
ALLOW_REGISTER: false
|
||||
depends_on:
|
||||
db:
|
||||
condition: service_healthy
|
||||
restart: always
|
||||
postgres:
|
||||
image: postgres:15.4-alpine
|
||||
environment:
|
||||
POSTGRES_DB: tianji
|
||||
POSTGRES_USER: tianji
|
||||
POSTGRES_PASSWORD: tianji
|
||||
volumes:
|
||||
- tianji-db-data:/var/lib/postgresql/data
|
||||
restart: always
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"]
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
volumes:
|
||||
tianji-db-data:
|
Loading…
Reference in New Issue
Block a user