1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-03-22 07:39:39 +08:00
renovate[bot] 52e67e24fd chore(deps): update postgres docker tag to v15.4 (#326)
* chore(deps): update postgres docker tag to v15.4

* Update app version

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
2023-08-15 14:21:34 +08:00

21 lines
458 B
YAML

version: '3'
services:
postgres:
container_name: ${CONTAINER_NAME}
image: postgres:15.4-alpine
restart: always
environment:
- POSTGRES_USER=${PANEL_DB_ROOT_USER}
- POSTGRES_PASSWORD=${PANEL_DB_ROOT_PASSWORD}
ports:
- ${PANEL_APP_PORT_HTTP}:5432
volumes:
- ./data:/var/lib/postgresql/data
networks:
- 1panel-network
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true