37 lines
816 B
YAML
37 lines
816 B
YAML
version: "3"
|
|
services:
|
|
postgresql:
|
|
image: postgres:latest
|
|
container_name: postgresql
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_USER:
|
|
POSTGRES_PASSWORD:
|
|
POSTGRES_DB:
|
|
volumes:
|
|
- <docker directory>/postgresql/data:/var/lib/postgresql/data
|
|
networks:
|
|
postgresql:
|
|
ipv4_address: <static ip>
|
|
ports:
|
|
- "5432:5432"
|
|
pgadmin:
|
|
container_name: pgadmin
|
|
image: dpage/pgadmin4:latest
|
|
restart: unless-stopped
|
|
environment:
|
|
PGADMIN_DEFAULT_EMAIL:
|
|
PGADMIN_DEFAULT_PASSWORD:
|
|
volumes:
|
|
- <docker directory>/pgadmin:/var/lib/pgadmin
|
|
networks:
|
|
postgresql:
|
|
ipv4_address: <static ip>
|
|
ports:
|
|
- "5050:80"
|
|
networks:
|
|
postgresql:
|
|
name: postgresql
|
|
ipam:
|
|
config:
|
|
- subnet: <subnet> |