Signed-off-by: cuiyili 2268260388@qq.com --- container/srv-http/start | 1 + 1 file changed, 1 insertion(+)
diff --git a/container/srv-http/start b/container/srv-http/start index b56fe4d..8c8ca0b 100755 --- a/container/srv-http/start +++ b/container/srv-http/start @@ -14,6 +14,7 @@ cmd=( -v /etc/localtime:/etc/localtime:ro -v /srv/result:/srv/result:ro -v /srv/initrd/qemu-image:/srv/initrd/qemu-image:ro + -v /srv/os:/srv/os:ro -d srv-http )
This serivce ties up different dirs to the same service. However we'll need the flexibility to hold the dirs in different file servers.
So better split up this service (one service per dir) in future.
Thanks, Fengguang
On Thu, Nov 26, 2020 at 05:21:04PM +0800, Cui Yili wrote:
Signed-off-by: cuiyili 2268260388@qq.com
container/srv-http/start | 1 + 1 file changed, 1 insertion(+)
diff --git a/container/srv-http/start b/container/srv-http/start index b56fe4d..8c8ca0b 100755 --- a/container/srv-http/start +++ b/container/srv-http/start @@ -14,6 +14,7 @@ cmd=( -v /etc/localtime:/etc/localtime:ro -v /srv/result:/srv/result:ro -v /srv/initrd/qemu-image:/srv/initrd/qemu-image:ro
- -v /srv/os:/srv/os:ro -d srv-http
)
2.23.0
On Fri, Jan 08, 2021 at 10:57:51AM +0800, Wu Fengguang wrote:
This serivce ties up different dirs to the same service. However we'll need the flexibility to hold the dirs in different file servers.
So better split up this service (one service per dir) in future.
how about one "start" file per service - pub-start # -p 11302:11300 - result-start # -p 11300:11300 ...
Thanks, Weitao
Thanks, Fengguang
On Tue, Jan 12, 2021 at 09:12:38AM +0800, Lu Weitao wrote:
On Fri, Jan 08, 2021 at 10:57:51AM +0800, Wu Fengguang wrote:
This serivce ties up different dirs to the same service. However we'll need the flexibility to hold the dirs in different file servers.
So better split up this service (one service per dir) in future.
how about one "start" file per service
- pub-start # -p 11302:11300
- result-start # -p 11300:11300
...
Good. How about reverting the name words
start-pub start-result
Thanks, Fengguang
On Fri, Jan 29, 2021 at 09:33:41AM +0800, Wu Fengguang wrote:
On Tue, Jan 12, 2021 at 09:12:38AM +0800, Lu Weitao wrote:
On Fri, Jan 08, 2021 at 10:57:51AM +0800, Wu Fengguang wrote:
This serivce ties up different dirs to the same service. However we'll need the flexibility to hold the dirs in different file servers.
So better split up this service (one service per dir) in future.
how about one "start" file per service
- pub-start # -p 11302:11300
- result-start # -p 11300:11300
...
Good. How about reverting the name words
start-pub start-result
yes, that's better
Thanks, Weitao
Thanks, Fengguang