mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2025-02-24 00:04:25 +08:00
23 lines
507 B
YAML
23 lines
507 B
YAML
|
networks:
|
||
|
1panel-network:
|
||
|
external: true
|
||
|
|
||
|
services:
|
||
|
nexus3:
|
||
|
image: sonatype/nexus3:3.77.1-alpine
|
||
|
container_name: ${CONTAINER_NAME}
|
||
|
labels:
|
||
|
createdBy: "Apps"
|
||
|
restart: always
|
||
|
networks:
|
||
|
- 1panel-network
|
||
|
ports:
|
||
|
- ${PANEL_APP_PORT_HTTP}:8081
|
||
|
env_file:
|
||
|
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
|
||
|
- ${ENV_FILE:-/etc/1panel/envs/default.env}
|
||
|
volumes:
|
||
|
- ${NEXUS3_ROOT_PATH}/data:/nexus-data
|
||
|
environment:
|
||
|
- TZ=Asia/Shanghai
|