mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-11 03:36:55 +08:00
02325f9baf
* chore(deps): update linuxserver/nextcloud docker tag to v28 * 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>
23 lines
453 B
YAML
23 lines
453 B
YAML
version: '3'
|
|
services:
|
|
nextcloud:
|
|
image: linuxserver/nextcloud:28.0.0
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTPS}:443"
|
|
volumes:
|
|
- "./data/config:/config"
|
|
- "./data/data:/data"
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=${TIME_ZONE}
|
|
labels:
|
|
createdBy: "Apps"
|
|
networks:
|
|
1panel-network:
|
|
external: true
|