appstore-1panel/apps/onedev/11.5.3/docker-compose.yml
Meng Sen 1165dcd41c 应用标准化
Signed-off-by: Meng Sen <qyg2297248353@gmail.com>
2024-11-27 18:40:30 +08:00

30 lines
839 B
YAML

networks:
1panel-network:
external: true
services:
onedev:
image: 1dev/server:11.5.3
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:6610
- ${PANEL_APP_PORT_SSH}:6611
volumes:
- ${ONEDEV_ROOT_PATH}/data:/opt/onedev
- /var/run/docker.sock:/var/run/docker.sock
env_file:
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
- ${APP_ENV_FILE:-/etc/1panel/envs/onedev/onedev.env}
- ${ENV_FILE:-/etc/1panel/envs/default.env}
environment:
- initial_user=${INITIAL_USER}
- initial_password=${INITIAL_PASSWORD}
- initial_email=${INITIAL_EMAIL}
- initial_server_url=${INITIAL_SERVER_URL}
- initial_ssh_root_url=${INITIAL_SSH_ROOT_URL}