Add Docker Compose configuration files for ClickHouse, Habitica, MinIO, and Radicale services
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
habitica:
|
||||
image: habitica/habitica:latest
|
||||
container_name: habitica
|
||||
environment:
|
||||
- NODE_ENV=production
|
||||
- DATABASE_URL=postgres://habitica:habitica@db:5432/habitica
|
||||
ports:
|
||||
- "3000:3000"
|
||||
depends_on:
|
||||
- db
|
||||
|
||||
db:
|
||||
image: postgres:13
|
||||
container_name: habitica_db
|
||||
environment:
|
||||
- POSTGRES_DB=habitica
|
||||
- POSTGRES_USER=habitica
|
||||
- POSTGRES_PASSWORD=habitica
|
||||
volumes:
|
||||
- ./db_data:/var/lib/postgresql/data
|
||||
Reference in New Issue
Block a user