-
-
Save dandelg88/cd396cad9656024f12c01b8524b5d9e5 to your computer and use it in GitHub Desktop.
Revisions
-
Klerith created this gist
May 18, 2024 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ services: db: container_name: postgres_database image: postgres:16.3 volumes: - ./postgres:/var/lib/postgresql/data environment: - POSTGRES_PASSWORD=123456 restart: always ports: - "5432:5432" pgAdmin: depends_on: - db image: dpage/pgadmin4:8.6 volumes: - ./pgadmin:/var/lib/pgadmin ports: - "8080:80" environment: - PGADMIN_DEFAULT_PASSWORD=123456 - [email protected] restart: always