diff options
author | Jonas Kohl | 2024-09-19 14:28:03 +0200 |
---|---|---|
committer | Jonas Kohl | 2024-09-19 14:28:03 +0200 |
commit | 4f799a81f99106dc0efc3741cac31110bf429a4e (patch) | |
tree | 63f82d136bd77a354a1bee6ce39ebbb555b3e9a5 /compose.yml | |
parent | ec0ea4e681136c38b17c66b40ee5dfca8ca136e4 (diff) |
Remove pgAdmin and make db internal
Diffstat (limited to 'compose.yml')
-rw-r--r-- | compose.yml | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/compose.yml b/compose.yml index ed5a730..6ccc74e 100644 --- a/compose.yml +++ b/compose.yml @@ -13,17 +13,17 @@ services: image: postgres restart: unless-stopped env_file: ./.env - ports: - - 5432:5432 + # ports: + # - 5432:5432 volumes: - ./data/db:/var/lib/postgresql/data - admin: - image: dpage/pgadmin4:latest - restart: unless-stopped - depends_on: - - db - ports: - - 8314:80 - environment: - PGADMIN_DEFAULT_EMAIL: 'pgadmin@jonaskohl.de' - PGADMIN_DEFAULT_PASSWORD: 'admin' + # admin: + # image: dpage/pgadmin4:latest + # restart: unless-stopped + # depends_on: + # - db + # ports: + # - 8314:80 + # environment: + # PGADMIN_DEFAULT_EMAIL: 'pgadmin@jonaskohl.de' + # PGADMIN_DEFAULT_PASSWORD: 'admin' |