我有一个通过服务器中的docker容器运行的Web应用程序,如果需要调试,我会使用 docker logs [OPTIONS] CONTAINER 来查找问题。
我想让我的容器登录我的主机,而不是在docker上连接以查看它。
答案 0 :(得分:1)
请查看docker run命令的#include "music.h"
#define music_channels 2
volatile _music music[music_channels];
const U32 music_data[]= // melody (frequency [0.01*Hz],duration [ms])
{
C5 ,400,D5 ,400,E5 ,400,C5 ,400,
C5 ,400,D5 ,400,E5 ,400,C5 ,400,
E5 ,400,F5 ,400,G5 ,800,E5 ,400,F5 ,400,G5 ,800,
G5 ,200,A5 ,200,G5 ,200,F5 ,200,E5 ,400,C5 ,400,
G5 ,200,A5 ,200,G5 ,200,F5 ,200,E5 ,400,C5 ,400,
C5 ,400,G4 ,400,C5 ,800,
C5 ,400,G4 ,400,C5 ,800,
0,0, // end of melody
};
// this do once for init
music_sys_init(music,music_channels);
// this starts playback on channel 0
music_play(&music[0],music_data);
// this should be inside timer but also blocking loop like this would do:
for (;;)
{
music_sys_update(music,music_channels,sound_pin);
wait 1000000/ftim0 [us]
}
选项。
-v = []:使用以下命令创建绑定安装:[host-dir:] container-dir [:rw | ro]。
如果缺少'host-dir',则docker创建一个新卷。
如果未指定'rw'或'ro',则将装入卷
在读写模式下。