Skip to content

Commit

Permalink
chore: add adminer to production docker compose
Browse files Browse the repository at this point in the history
[skip-docker]
  • Loading branch information
Satont committed Apr 16, 2023
1 parent f52c912 commit 0c589ee
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,18 @@ services:
restart: always
env_file:
- ./.env
db:

db:
image: postgres:15
restart: always
command: postgres -c shared_preload_libraries=pg_stat_statements -c pg_stat_statements.track=all
environment:
POSTGRES_USER: notifier
POSTGRES_PASSWORD: notifier
POSTGRES_DB: notifier

adminer:
image: adminer
restart: always
ports:
- "54324:8080"

0 comments on commit 0c589ee

Please sign in to comment.