Skip to content

Commit

Permalink
Update docker-compose.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
acetousk authored Aug 10, 2024
1 parent 58bf208 commit d9b7773
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,23 @@ services:
- default_locale=en_US
- default_time_zone=US/Pacific

moqui-database:
image: postgres:16-alpine
container_name: moqui-database
restart: always
ports:
# change this as needed to bind to any address or even comment to not expose port outside containers
- 127.0.0.1:5432:5432
volumes:
# edit these as needed to map configuration and data storage
- ./db/postgres/data:/var/lib/postgresql/data
environment:
- POSTGRES_DB=moqui
- POSTGRES_DB_SCHEMA=public
- POSTGRES_USER=moqui
- POSTGRES_PASSWORD=moqui
# PGDATA, POSTGRES_INITDB_ARGS

moqui-search:
image: opensearchproject/opensearch:2.4.0
container_name: moqui-search
Expand Down

0 comments on commit d9b7773

Please sign in to comment.