mirror of
https://github.com/krahets/hello-algo.git
synced 2025-01-23 06:00:27 +08:00
16 lines
366 B
YAML
16 lines
366 B
YAML
version: '3.8'
|
|
services:
|
|
hello-algo-code:
|
|
build:
|
|
context: .
|
|
args:
|
|
# 设置需要安装的语言,使用空格隔开
|
|
# Set the languages to be installed, separated by spaces
|
|
LANGS: "python cpp c"
|
|
image: hello-algo-code
|
|
container_name: hello-algo-code
|
|
volumes:
|
|
- .:/codes
|
|
stdin_open: true
|
|
tty: true
|