mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-11 03:36:55 +08:00
82b82c2fb0
* chore(deps): update postgres docker tag to v16.2 * Update app version [skip ci] --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
21 lines
458 B
YAML
21 lines
458 B
YAML
version: '3'
|
|
services:
|
|
postgres:
|
|
container_name: ${CONTAINER_NAME}
|
|
image: postgres:16.2-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
|