self-hosted/postgres/docker-compose.yml

39 lines
673 B
YAML
Raw Normal View History

2022-08-02 20:16:17 +02:00
version: '3.8'
services:
postgres:
container_name: postgres
image: postgres:latest
restart: always
2023-03-18 09:24:38 +01:00
environment:
2023-03-18 09:33:03 +01:00
- POSTGRES_USER
- POSTGRES_PASSWORD
- POSTGRES_DB
2022-08-02 20:16:17 +02:00
volumes:
2023-03-18 09:09:11 +01:00
- postgres_data:/var/lib/postgresql/data
2022-08-02 20:16:17 +02:00
logging:
driver: journald
networks:
- internal
pgadmin:
container_name: pgadmin4
image: dpage/pgadmin4
restart: always
2023-03-18 09:24:38 +01:00
environment:
2023-03-18 09:33:03 +01:00
- PGADMIN_DEFAULT_EMAIL
- PGADMIN_DEFAULT_PASSWORD
2022-08-02 20:16:17 +02:00
volumes:
2023-03-18 09:09:11 +01:00
- pgadmin:/var/lib/pgadmin
2022-08-02 20:16:17 +02:00
logging:
driver: journald
networks:
- internal
2022-08-02 21:46:15 +02:00
2023-03-18 09:09:11 +01:00
volumes:
postgres_data: {}
pgadmin: {}
2022-08-02 21:46:15 +02:00
networks:
internal: