Skip to content

Commit

Permalink
break out pgadmin, remove service from couchdb
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjones-plip committed Oct 26, 2024
1 parent 9321c16 commit 96322cb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
2 changes: 0 additions & 2 deletions docker-compose.couchdb.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '3.7'

services:
couchdb:
image: public.ecr.aws/medic/cht-couchdb:4.8.0
Expand Down
9 changes: 9 additions & 0 deletions docker-compose.pgadmin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
services:
pgadmin:
image: dpage/pgadmin4
environment:
PGADMIN_DEFAULT_EMAIL: ${PGADMIN_DEFAULT_EMAIL:[email protected]}
PGADMIN_DEFAULT_PASSWORD: ${PGADMIN_DEFAULT_PASSWORD:-admin}
PGADMIN_CONFIG_SERVER_MODE: 'False'
ports:
- "${PGADMIN_PORT:-5050}:80"
11 changes: 1 addition & 10 deletions docker-compose.postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,4 @@ services:
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=${POSTGRES_DB}
- POSTGRES_TABLES=${COUCHDB_DBS}
- POSTGRES_SCHEMA=${POSTGRES_SCHEMA}

pgadmin:
image: dpage/pgadmin4
environment:
PGADMIN_DEFAULT_EMAIL: ${PGADMIN_DEFAULT_EMAIL:[email protected]}
PGADMIN_DEFAULT_PASSWORD: ${PGADMIN_DEFAULT_PASSWORD:-admin}
PGADMIN_CONFIG_SERVER_MODE: 'False'
ports:
- "${PGADMIN_PORT:-5050}:80"
- POSTGRES_SCHEMA=${POSTGRES_SCHEMA}

0 comments on commit 96322cb

Please sign in to comment.