41 lines
848 B
YAML
41 lines
848 B
YAML
services:
|
|
postiz-postgres:
|
|
image: postgres:14.5
|
|
container_name: postiz-postgres
|
|
restart: always
|
|
environment:
|
|
POSTGRES_PASSWORD: postiz-local-pwd
|
|
POSTGRES_USER: postiz-local
|
|
POSTGRES_DB: postiz-db-local
|
|
volumes:
|
|
- postgres-volume:/var/lib/postgresql/data
|
|
ports:
|
|
- 5432:5432
|
|
networks:
|
|
- postiz-network
|
|
postiz-pg-admin:
|
|
image: dpage/pgadmin4
|
|
container_name: postiz-pg-admin
|
|
restart: always
|
|
ports:
|
|
- 8081:80
|
|
environment:
|
|
PGADMIN_DEFAULT_EMAIL: admin@admin.com
|
|
PGADMIN_DEFAULT_PASSWORD: admin
|
|
networks:
|
|
- postiz-network
|
|
postiz-redis:
|
|
image: redis:7.2
|
|
container_name: postiz-redis
|
|
restart: always
|
|
ports:
|
|
- 6379:6379
|
|
|
|
volumes:
|
|
postgres-volume:
|
|
external: false
|
|
|
|
networks:
|
|
postiz-network:
|
|
external: false
|