diff --git a/ubuntu/23.04-go1.20.7-tf-cpu/Dockerfile b/ubuntu/23.04-go1.20.7-tf-cpu/Dockerfile new file mode 100644 index 0000000..2457b1d --- /dev/null +++ b/ubuntu/23.04-go1.20.7-tf-cpu/Dockerfile @@ -0,0 +1,11 @@ +FROM v8fg/ubuntu:23.04 + +LABEL author="xwi88" type="ubuntu" github="https://github.com/xwi88" group="https://github.com/v8fg" + +RUN wget https://golang.google.cn/dl/go1.20.7.linux-amd64.tar.gz && \ +rm -rf /usr/local/go && tar -C /usr/local -xzf go1.20.7.linux-amd64.tar.gz && rm go1.20.7.linux-amd64.tar.gz + +ENV PATH=$PATH:/usr/local/go/bin GOPROXY=https://goproxy.cn,https://goproxy.io/,https://mirrors.aliyun.com/goproxy/,https://gocenter.io/,https://proxy.golang.org,direct + +# Google libtensorflow +RUN wget https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-linux-x86_64-2.3.0.tar.gz && tar -C /usr/local -xzf libtensorflow-cpu-linux-x86_64-2.3.0.tar.gz && ldconfig && rm libtensorflow-cpu-linux-x86_64-2.3.0.tar.gz diff --git a/ubuntu/23.04-go1.20.7-tf-cpu/configs/sources-23.list b/ubuntu/23.04-go1.20.7-tf-cpu/configs/sources-23.list new file mode 100644 index 0000000..56fcbcc --- /dev/null +++ b/ubuntu/23.04-go1.20.7-tf-cpu/configs/sources-23.list @@ -0,0 +1,42 @@ +#清华源 +# deb cdrom:[Ubuntu 23.04 LTS lunar Xerus_ - Release amd64 (20160420.1)]/ lunar main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar universe +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates universe +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar multiverse +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates multiverse +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security universe +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security multiverse + +#中科大 +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-security main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-security main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse + +#阿里源 +# deb cdrom:[Ubuntu 23.04 LTS lunar Xerus_ - Release amd64 (20160420.1)]/ lunar main restricted +deb-src http://archive.ubuntu.com/ubuntu lunar main restricted #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar main restricted +deb-src http://mirrors.aliyun.com/ubuntu/ lunar main restricted multiverse universe #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar-updates main restricted +deb-src http://mirrors.aliyun.com/ubuntu/ lunar-updates main restricted multiverse universe #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar universe +deb http://mirrors.aliyun.com/ubuntu/ lunar-updates universe +deb http://mirrors.aliyun.com/ubuntu/ lunar multiverse +deb http://mirrors.aliyun.com/ubuntu/ lunar-updates multiverse +deb http://mirrors.aliyun.com/ubuntu/ lunar-backports main restricted universe multiverse +deb-src http://mirrors.aliyun.com/ubuntu/ lunar-backports main restricted universe multiverse #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar-security main restricted +deb-src http://mirrors.aliyun.com/ubuntu/ lunar-security main restricted multiverse universe #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar-security universe +deb http://mirrors.aliyun.com/ubuntu/ lunar-security multiverse diff --git a/ubuntu/23.04-go1.20.7-tf-cpu/docker-compose.yml b/ubuntu/23.04-go1.20.7-tf-cpu/docker-compose.yml new file mode 100644 index 0000000..ec65a86 --- /dev/null +++ b/ubuntu/23.04-go1.20.7-tf-cpu/docker-compose.yml @@ -0,0 +1,12 @@ +version: '3.7' +services: + ubuntu: + build: . + container_name: ubuntu-23.04-go1.20.7-tf-cpu + environment: + TZ: Asia/Shanghai + image: v8fg/ubuntu:23.04-go1.20.7-tf-cpu + stdin_open: true + tty: true + restart: 'no' # no|on-failure[:max-retries]|always|unless-stopped + command: [ "/bin/bash"] diff --git a/ubuntu/23.04-go1.20.7-tf-cpu/docker-version.sh b/ubuntu/23.04-go1.20.7-tf-cpu/docker-version.sh new file mode 100755 index 0000000..c8506c0 --- /dev/null +++ b/ubuntu/23.04-go1.20.7-tf-cpu/docker-version.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +# image info, version may auto update +TAG=23.04-go1.20.7-tf-cpu +USER=v8fg +NAME=ubuntu + +REPOSITORY=${USER}/${NAME} +# image with tag, use to push image +LOCATION=${REPOSITORY}:${TAG} + +# use to build container +CONTAINER_NAME=${USER}-${NAME}-${TAG} diff --git a/ubuntu/23.04-go1.20.7-upx/Dockerfile b/ubuntu/23.04-go1.20.7-upx/Dockerfile new file mode 100644 index 0000000..da5cb70 --- /dev/null +++ b/ubuntu/23.04-go1.20.7-upx/Dockerfile @@ -0,0 +1,8 @@ +FROM v8fg/ubuntu:23.04 + +LABEL author="xwi88" type="ubuntu" github="https://github.com/xwi88" group="https://github.com/v8fg" + +RUN wget https://golang.google.cn/dl/go1.20.7.linux-amd64.tar.gz && \ +rm -rf /usr/local/go && tar -C /usr/local -xzf go1.20.7.linux-amd64.tar.gz && rm go1.20.7.linux-amd64.tar.gz + +ENV PATH=$PATH:/usr/local/go/bin GOPROXY=https://goproxy.cn,https://goproxy.io/,https://mirrors.aliyun.com/goproxy/,https://gocenter.io/,https://proxy.golang.org,direct diff --git a/ubuntu/23.04-go1.20.7-upx/configs/sources-23.list b/ubuntu/23.04-go1.20.7-upx/configs/sources-23.list new file mode 100644 index 0000000..56fcbcc --- /dev/null +++ b/ubuntu/23.04-go1.20.7-upx/configs/sources-23.list @@ -0,0 +1,42 @@ +#清华源 +# deb cdrom:[Ubuntu 23.04 LTS lunar Xerus_ - Release amd64 (20160420.1)]/ lunar main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar universe +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates universe +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar multiverse +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates multiverse +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security universe +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security multiverse + +#中科大 +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-security main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-security main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse + +#阿里源 +# deb cdrom:[Ubuntu 23.04 LTS lunar Xerus_ - Release amd64 (20160420.1)]/ lunar main restricted +deb-src http://archive.ubuntu.com/ubuntu lunar main restricted #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar main restricted +deb-src http://mirrors.aliyun.com/ubuntu/ lunar main restricted multiverse universe #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar-updates main restricted +deb-src http://mirrors.aliyun.com/ubuntu/ lunar-updates main restricted multiverse universe #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar universe +deb http://mirrors.aliyun.com/ubuntu/ lunar-updates universe +deb http://mirrors.aliyun.com/ubuntu/ lunar multiverse +deb http://mirrors.aliyun.com/ubuntu/ lunar-updates multiverse +deb http://mirrors.aliyun.com/ubuntu/ lunar-backports main restricted universe multiverse +deb-src http://mirrors.aliyun.com/ubuntu/ lunar-backports main restricted universe multiverse #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar-security main restricted +deb-src http://mirrors.aliyun.com/ubuntu/ lunar-security main restricted multiverse universe #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar-security universe +deb http://mirrors.aliyun.com/ubuntu/ lunar-security multiverse diff --git a/ubuntu/23.04-go1.20.7-upx/docker-compose.yml b/ubuntu/23.04-go1.20.7-upx/docker-compose.yml new file mode 100644 index 0000000..c684295 --- /dev/null +++ b/ubuntu/23.04-go1.20.7-upx/docker-compose.yml @@ -0,0 +1,12 @@ +version: '3.7' +services: + ubuntu: + build: . + container_name: ubuntu-23.04-go1.20.7-upx + environment: + TZ: Asia/Shanghai + image: v8fg/ubuntu:23.04-go1.20.7-upx + stdin_open: true + tty: true + restart: 'no' # no|on-failure[:max-retries]|always|unless-stopped + command: [ "/bin/bash"] diff --git a/ubuntu/23.04-go1.20.7-upx/docker-version.sh b/ubuntu/23.04-go1.20.7-upx/docker-version.sh new file mode 100755 index 0000000..40a69ed --- /dev/null +++ b/ubuntu/23.04-go1.20.7-upx/docker-version.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +# image info, version may auto update +TAG=23.04-go1.20.7-upx +USER=v8fg +NAME=ubuntu + +REPOSITORY=${USER}/${NAME} +# image with tag, use to push image +LOCATION=${REPOSITORY}:${TAG} + +# use to build container +CONTAINER_NAME=${USER}-${NAME}-${TAG} diff --git a/ubuntu/23.04-go1.21.0-tf-cpu/Dockerfile b/ubuntu/23.04-go1.21.0-tf-cpu/Dockerfile new file mode 100644 index 0000000..e6243e6 --- /dev/null +++ b/ubuntu/23.04-go1.21.0-tf-cpu/Dockerfile @@ -0,0 +1,11 @@ +FROM v8fg/ubuntu:23.04 + +LABEL author="xwi88" type="ubuntu" github="https://github.com/xwi88" group="https://github.com/v8fg" + +RUN wget https://golang.google.cn/dl/go1.21.0.linux-amd64.tar.gz && \ +rm -rf /usr/local/go && tar -C /usr/local -xzf go1.21.0.linux-amd64.tar.gz && rm go1.21.0.linux-amd64.tar.gz + +ENV PATH=$PATH:/usr/local/go/bin GOPROXY=https://goproxy.cn,https://goproxy.io/,https://mirrors.aliyun.com/goproxy/,https://gocenter.io/,https://proxy.golang.org,direct + +# Google libtensorflow +RUN wget https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-linux-x86_64-2.3.0.tar.gz && tar -C /usr/local -xzf libtensorflow-cpu-linux-x86_64-2.3.0.tar.gz && ldconfig && rm libtensorflow-cpu-linux-x86_64-2.3.0.tar.gz diff --git a/ubuntu/23.04-go1.21.0-tf-cpu/configs/sources-23.list b/ubuntu/23.04-go1.21.0-tf-cpu/configs/sources-23.list new file mode 100644 index 0000000..56fcbcc --- /dev/null +++ b/ubuntu/23.04-go1.21.0-tf-cpu/configs/sources-23.list @@ -0,0 +1,42 @@ +#清华源 +# deb cdrom:[Ubuntu 23.04 LTS lunar Xerus_ - Release amd64 (20160420.1)]/ lunar main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar universe +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates universe +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar multiverse +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates multiverse +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security universe +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security multiverse + +#中科大 +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-security main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-security main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse + +#阿里源 +# deb cdrom:[Ubuntu 23.04 LTS lunar Xerus_ - Release amd64 (20160420.1)]/ lunar main restricted +deb-src http://archive.ubuntu.com/ubuntu lunar main restricted #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar main restricted +deb-src http://mirrors.aliyun.com/ubuntu/ lunar main restricted multiverse universe #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar-updates main restricted +deb-src http://mirrors.aliyun.com/ubuntu/ lunar-updates main restricted multiverse universe #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar universe +deb http://mirrors.aliyun.com/ubuntu/ lunar-updates universe +deb http://mirrors.aliyun.com/ubuntu/ lunar multiverse +deb http://mirrors.aliyun.com/ubuntu/ lunar-updates multiverse +deb http://mirrors.aliyun.com/ubuntu/ lunar-backports main restricted universe multiverse +deb-src http://mirrors.aliyun.com/ubuntu/ lunar-backports main restricted universe multiverse #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar-security main restricted +deb-src http://mirrors.aliyun.com/ubuntu/ lunar-security main restricted multiverse universe #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar-security universe +deb http://mirrors.aliyun.com/ubuntu/ lunar-security multiverse diff --git a/ubuntu/23.04-go1.21.0-tf-cpu/docker-compose.yml b/ubuntu/23.04-go1.21.0-tf-cpu/docker-compose.yml new file mode 100644 index 0000000..3afcbfd --- /dev/null +++ b/ubuntu/23.04-go1.21.0-tf-cpu/docker-compose.yml @@ -0,0 +1,12 @@ +version: '3.7' +services: + ubuntu: + build: . + container_name: ubuntu-23.04-go1.21.0-tf-cpu + environment: + TZ: Asia/Shanghai + image: v8fg/ubuntu:23.04-go1.21.0-tf-cpu + stdin_open: true + tty: true + restart: 'no' # no|on-failure[:max-retries]|always|unless-stopped + command: [ "/bin/bash"] diff --git a/ubuntu/23.04-go1.21.0-tf-cpu/docker-version.sh b/ubuntu/23.04-go1.21.0-tf-cpu/docker-version.sh new file mode 100755 index 0000000..fd24a8c --- /dev/null +++ b/ubuntu/23.04-go1.21.0-tf-cpu/docker-version.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +# image info, version may auto update +TAG=23.04-go1.21.0-tf-cpu +USER=v8fg +NAME=ubuntu + +REPOSITORY=${USER}/${NAME} +# image with tag, use to push image +LOCATION=${REPOSITORY}:${TAG} + +# use to build container +CONTAINER_NAME=${USER}-${NAME}-${TAG} diff --git a/ubuntu/23.04-go1.21.0-upx/Dockerfile b/ubuntu/23.04-go1.21.0-upx/Dockerfile new file mode 100644 index 0000000..4ba9261 --- /dev/null +++ b/ubuntu/23.04-go1.21.0-upx/Dockerfile @@ -0,0 +1,8 @@ +FROM v8fg/ubuntu:23.04 + +LABEL author="xwi88" type="ubuntu" github="https://github.com/xwi88" group="https://github.com/v8fg" + +RUN wget https://golang.google.cn/dl/go1.21.0.linux-amd64.tar.gz && \ +rm -rf /usr/local/go && tar -C /usr/local -xzf go1.21.0.linux-amd64.tar.gz && rm go1.21.0.linux-amd64.tar.gz + +ENV PATH=$PATH:/usr/local/go/bin GOPROXY=https://goproxy.cn,https://goproxy.io/,https://mirrors.aliyun.com/goproxy/,https://gocenter.io/,https://proxy.golang.org,direct diff --git a/ubuntu/23.04-go1.21.0-upx/configs/sources-23.list b/ubuntu/23.04-go1.21.0-upx/configs/sources-23.list new file mode 100644 index 0000000..56fcbcc --- /dev/null +++ b/ubuntu/23.04-go1.21.0-upx/configs/sources-23.list @@ -0,0 +1,42 @@ +#清华源 +# deb cdrom:[Ubuntu 23.04 LTS lunar Xerus_ - Release amd64 (20160420.1)]/ lunar main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar universe +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates universe +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar multiverse +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates multiverse +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security universe +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security multiverse + +#中科大 +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-security main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-security main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse + +#阿里源 +# deb cdrom:[Ubuntu 23.04 LTS lunar Xerus_ - Release amd64 (20160420.1)]/ lunar main restricted +deb-src http://archive.ubuntu.com/ubuntu lunar main restricted #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar main restricted +deb-src http://mirrors.aliyun.com/ubuntu/ lunar main restricted multiverse universe #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar-updates main restricted +deb-src http://mirrors.aliyun.com/ubuntu/ lunar-updates main restricted multiverse universe #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar universe +deb http://mirrors.aliyun.com/ubuntu/ lunar-updates universe +deb http://mirrors.aliyun.com/ubuntu/ lunar multiverse +deb http://mirrors.aliyun.com/ubuntu/ lunar-updates multiverse +deb http://mirrors.aliyun.com/ubuntu/ lunar-backports main restricted universe multiverse +deb-src http://mirrors.aliyun.com/ubuntu/ lunar-backports main restricted universe multiverse #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar-security main restricted +deb-src http://mirrors.aliyun.com/ubuntu/ lunar-security main restricted multiverse universe #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar-security universe +deb http://mirrors.aliyun.com/ubuntu/ lunar-security multiverse diff --git a/ubuntu/23.04-go1.21.0-upx/docker-compose.yml b/ubuntu/23.04-go1.21.0-upx/docker-compose.yml new file mode 100644 index 0000000..7b9f2d1 --- /dev/null +++ b/ubuntu/23.04-go1.21.0-upx/docker-compose.yml @@ -0,0 +1,12 @@ +version: '3.7' +services: + ubuntu: + build: . + container_name: ubuntu-23.04-go1.21.0-upx + environment: + TZ: Asia/Shanghai + image: v8fg/ubuntu:23.04-go1.21.0-upx + stdin_open: true + tty: true + restart: 'no' # no|on-failure[:max-retries]|always|unless-stopped + command: [ "/bin/bash"] diff --git a/ubuntu/23.04-go1.21.0-upx/docker-version.sh b/ubuntu/23.04-go1.21.0-upx/docker-version.sh new file mode 100755 index 0000000..d7b33e0 --- /dev/null +++ b/ubuntu/23.04-go1.21.0-upx/docker-version.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +# image info, version may auto update +TAG=23.04-go1.21.0-upx +USER=v8fg +NAME=ubuntu + +REPOSITORY=${USER}/${NAME} +# image with tag, use to push image +LOCATION=${REPOSITORY}:${TAG} + +# use to build container +CONTAINER_NAME=${USER}-${NAME}-${TAG} diff --git a/ubuntu/23.04-tf-cpu/Dockerfile b/ubuntu/23.04-tf-cpu/Dockerfile new file mode 100644 index 0000000..9d967fb --- /dev/null +++ b/ubuntu/23.04-tf-cpu/Dockerfile @@ -0,0 +1,6 @@ +FROM v8fg/ubuntu:23.04 + +LABEL author="xwi88" type="ubuntu" github="https://github.com/xwi88" group="https://github.com/v8fg" + +# Google libtensorflow +RUN wget https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-linux-x86_64-2.3.0.tar.gz && tar -C /usr/local -xzf libtensorflow-cpu-linux-x86_64-2.3.0.tar.gz && ldconfig && rm libtensorflow-cpu-linux-x86_64-2.3.0.tar.gz diff --git a/ubuntu/23.04-tf-cpu/configs/sources-23.list b/ubuntu/23.04-tf-cpu/configs/sources-23.list new file mode 100644 index 0000000..56fcbcc --- /dev/null +++ b/ubuntu/23.04-tf-cpu/configs/sources-23.list @@ -0,0 +1,42 @@ +#清华源 +# deb cdrom:[Ubuntu 23.04 LTS lunar Xerus_ - Release amd64 (20160420.1)]/ lunar main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar universe +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates universe +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar multiverse +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates multiverse +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security universe +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security multiverse + +#中科大 +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-security main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-security main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse + +#阿里源 +# deb cdrom:[Ubuntu 23.04 LTS lunar Xerus_ - Release amd64 (20160420.1)]/ lunar main restricted +deb-src http://archive.ubuntu.com/ubuntu lunar main restricted #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar main restricted +deb-src http://mirrors.aliyun.com/ubuntu/ lunar main restricted multiverse universe #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar-updates main restricted +deb-src http://mirrors.aliyun.com/ubuntu/ lunar-updates main restricted multiverse universe #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar universe +deb http://mirrors.aliyun.com/ubuntu/ lunar-updates universe +deb http://mirrors.aliyun.com/ubuntu/ lunar multiverse +deb http://mirrors.aliyun.com/ubuntu/ lunar-updates multiverse +deb http://mirrors.aliyun.com/ubuntu/ lunar-backports main restricted universe multiverse +deb-src http://mirrors.aliyun.com/ubuntu/ lunar-backports main restricted universe multiverse #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar-security main restricted +deb-src http://mirrors.aliyun.com/ubuntu/ lunar-security main restricted multiverse universe #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar-security universe +deb http://mirrors.aliyun.com/ubuntu/ lunar-security multiverse diff --git a/ubuntu/23.04-tf-cpu/docker-compose.yml b/ubuntu/23.04-tf-cpu/docker-compose.yml new file mode 100644 index 0000000..f954cdb --- /dev/null +++ b/ubuntu/23.04-tf-cpu/docker-compose.yml @@ -0,0 +1,12 @@ +version: '3.7' +services: + ubuntu: + build: . + container_name: ubuntu-23.04-tf-cpu + environment: + TZ: Asia/Shanghai + image: v8fg/ubuntu:23.04-tf-cpu + stdin_open: true + tty: true + restart: 'no' # no|on-failure[:max-retries]|always|unless-stopped + command: [ "/bin/bash"] diff --git a/ubuntu/23.04-tf-cpu/docker-version.sh b/ubuntu/23.04-tf-cpu/docker-version.sh new file mode 100755 index 0000000..61d5951 --- /dev/null +++ b/ubuntu/23.04-tf-cpu/docker-version.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +# image info, version may auto update +TAG=23.04-tf-cpu +USER=v8fg +NAME=ubuntu + +REPOSITORY=${USER}/${NAME} +# image with tag, use to push image +LOCATION=${REPOSITORY}:${TAG} + +# use to build container +CONTAINER_NAME=${USER}-${NAME}-${TAG} diff --git a/ubuntu/23.04/Dockerfile b/ubuntu/23.04/Dockerfile new file mode 100644 index 0000000..2bc02ef --- /dev/null +++ b/ubuntu/23.04/Dockerfile @@ -0,0 +1,34 @@ +FROM ubuntu:23.04 + +LABEL author="xwi88" type="ubuntu" github="https://github.com/xwi88" group="https://github.com/v8fg" + +ENV TZ=Asia/Shanghai DEBIAN_FRONTEND=noninteractive + +RUN apt-get update && apt-get install -y ca-certificates + +# bak +RUN cp /etc/apt/sources.list /etc/apt/sources.list.bak +# replace sources.list +COPY configs/sources-23.list /etc/apt/sources.list + +RUN apt-get update && \ +apt-get install -y apt-utils && \ +apt-get install -y iputils-ping curl bash make wget && \ +apt-get install -y xz-utils tzdata git && \ +apt-get install -y gcc g++ && \ +apt-get clean && apt-get autoclean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \ +git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit" + +# timezone +RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && dpkg-reconfigure -f noninteractive tzdata + +# Version of upx to be used(without the 'v' prefix) +# For all releases, see https://github.com/upx/upx/releases +ARG UPX_VERSION=4.0.2 + +# Fetch upx, decompress it, make it executable. +# ADD https://github.com/upx/upx/releases/download/v${UPX_VERSION}/upx-${UPX_VERSION}-amd64_linux.tar.xz /tmp/upx.tar.xy + +# wget cache +RUN wget https://github.com/upx/upx/releases/download/v${UPX_VERSION}/upx-${UPX_VERSION}-amd64_linux.tar.xz -O /tmp/upx.tar.xy && \ +tar -xJOf /tmp/upx.tar.xy upx-${UPX_VERSION}-amd64_linux/upx > /bin/upx && chmod +x /bin/upx && rm /tmp/upx.tar.xy diff --git a/ubuntu/23.04/configs/sources-23.list b/ubuntu/23.04/configs/sources-23.list new file mode 100644 index 0000000..56fcbcc --- /dev/null +++ b/ubuntu/23.04/configs/sources-23.list @@ -0,0 +1,42 @@ +#清华源 +# deb cdrom:[Ubuntu 23.04 LTS lunar Xerus_ - Release amd64 (20160420.1)]/ lunar main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar universe +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates universe +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar multiverse +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates multiverse +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security universe +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security multiverse + +#中科大 +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-security main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-security main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse + +#阿里源 +# deb cdrom:[Ubuntu 23.04 LTS lunar Xerus_ - Release amd64 (20160420.1)]/ lunar main restricted +deb-src http://archive.ubuntu.com/ubuntu lunar main restricted #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar main restricted +deb-src http://mirrors.aliyun.com/ubuntu/ lunar main restricted multiverse universe #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar-updates main restricted +deb-src http://mirrors.aliyun.com/ubuntu/ lunar-updates main restricted multiverse universe #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar universe +deb http://mirrors.aliyun.com/ubuntu/ lunar-updates universe +deb http://mirrors.aliyun.com/ubuntu/ lunar multiverse +deb http://mirrors.aliyun.com/ubuntu/ lunar-updates multiverse +deb http://mirrors.aliyun.com/ubuntu/ lunar-backports main restricted universe multiverse +deb-src http://mirrors.aliyun.com/ubuntu/ lunar-backports main restricted universe multiverse #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar-security main restricted +deb-src http://mirrors.aliyun.com/ubuntu/ lunar-security main restricted multiverse universe #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar-security universe +deb http://mirrors.aliyun.com/ubuntu/ lunar-security multiverse diff --git a/ubuntu/23.04/docker-compose.yml b/ubuntu/23.04/docker-compose.yml new file mode 100644 index 0000000..9150823 --- /dev/null +++ b/ubuntu/23.04/docker-compose.yml @@ -0,0 +1,12 @@ +version: '3.7' +services: + ubuntu: + build: . + container_name: ubuntu-23.04 + environment: + TZ: Asia/Shanghai + image: v8fg/ubuntu:23.04 + stdin_open: true + tty: true + restart: 'no' # no|on-failure[:max-retries]|always|unless-stopped + command: [ "/bin/bash"] diff --git a/ubuntu/23.04/docker-version.sh b/ubuntu/23.04/docker-version.sh new file mode 100755 index 0000000..7bcc8b5 --- /dev/null +++ b/ubuntu/23.04/docker-version.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +# image info, version may auto update +TAG=23.04 +USER=v8fg +NAME=ubuntu + +REPOSITORY=${USER}/${NAME} +# image with tag, use to push image +LOCATION=${REPOSITORY}:${TAG} + +# use to build container +CONTAINER_NAME=${USER}-${NAME}-${TAG} diff --git a/ubuntu/README.md b/ubuntu/README.md index 7c0d3a5..55f1900 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -5,7 +5,12 @@ >`ubuntu:22.04` maybe have some issues, ex: `ls`, warning use latest - [x] [latest with upx](./latest/Dockerfile) -- [x] [22.04-tf-cpu](./22.04-tf-cpu/Dockerfile) +- [x] [23.04-tf-cpu](./23.04-tf-cpu/Dockerfile) +- [x] [23.04-go1.21.0-tf-cpu](23.04-go1.21.0-tf-cpu/Dockerfile) +- [x] [23.04-go1.21.0-upx](23.04-go1.21.0-upx/Dockerfile) +- [x] [23.04-go1.20.7-tf-cpu](23.04-go1.20.7-tf-cpu/Dockerfile) +- [x] [23.04-go1.20.7-upx](23.04-go1.20.7-upx/Dockerfile) +- [x] [23.04-tf-cpu](./23.04-tf-cpu/Dockerfile) - [x] [22.04-go1.21.0-tf-cpu](22.04-go1.21.0-tf-cpu/Dockerfile) - [x] [22.04-go1.21.0-upx](22.04-go1.21.0-upx/Dockerfile) - [x] [22.04-go1.20.7-tf-cpu](22.04-go1.20.7-tf-cpu/Dockerfile) diff --git a/ubuntu/latest/Dockerfile b/ubuntu/latest/Dockerfile index 0cfe6df..2bc02ef 100644 --- a/ubuntu/latest/Dockerfile +++ b/ubuntu/latest/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:22.04 +FROM ubuntu:23.04 LABEL author="xwi88" type="ubuntu" github="https://github.com/xwi88" group="https://github.com/v8fg" @@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y ca-certificates # bak RUN cp /etc/apt/sources.list /etc/apt/sources.list.bak # replace sources.list -COPY configs/sources-22.list /etc/apt/sources.list +COPY configs/sources-23.list /etc/apt/sources.list RUN apt-get update && \ apt-get install -y apt-utils && \ diff --git a/ubuntu/latest/configs/sources-22.list b/ubuntu/latest/configs/sources-22.list deleted file mode 100644 index 2cf56b7..0000000 --- a/ubuntu/latest/configs/sources-22.list +++ /dev/null @@ -1,44 +0,0 @@ -#清华源 -# deb cdrom:[Ubuntu 22.04 LTS _jammy Xerus_ - Release amd64 (20160420.1)]/ jammy main restricted -deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy main restricted -deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-updates main restricted -deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy universe -deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-updates universe -deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy multiverse -deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-updates multiverse -deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse -deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-security main restricted -deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-security universe -deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-security multiverse - -#中科大 -deb https://mirrors.ustc.edu.cn/ubuntu/ jammy main restricted universe multiverse -deb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy main restricted universe multiverse -deb https://mirrors.ustc.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse -deb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse -deb https://mirrors.ustc.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse -deb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse -deb https://mirrors.ustc.edu.cn/ubuntu/ jammy-security main restricted universe multiverse -deb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy-security main restricted universe multiverse -deb https://mirrors.ustc.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse -deb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse - -#阿里源 -# deb cdrom:[Ubuntu 22.04 LTS _jammy Xerus_ - Release amd64 (20160420.1)]/ jammy main restricted -deb-src http://archive.ubuntu.com/ubuntu jammy main restricted #Added by software-properties -deb http://mirrors.aliyun.com/ubuntu/ jammy main restricted -deb-src http://mirrors.aliyun.com/ubuntu/ jammy main restricted multiverse universe #Added by software-properties -deb http://mirrors.aliyun.com/ubuntu/ jammy-updates main restricted -deb-src http://mirrors.aliyun.com/ubuntu/ jammy-updates main restricted multiverse universe #Added by software-properties -deb http://mirrors.aliyun.com/ubuntu/ jammy universe -deb http://mirrors.aliyun.com/ubuntu/ jammy-updates universe -deb http://mirrors.aliyun.com/ubuntu/ jammy multiverse -deb http://mirrors.aliyun.com/ubuntu/ jammy-updates multiverse -deb http://mirrors.aliyun.com/ubuntu/ jammy-backports main restricted universe multiverse -deb-src http://mirrors.aliyun.com/ubuntu/ jammy-backports main restricted universe multiverse #Added by software-properties -deb http://archive.canonical.com/ubuntu jammy partner -deb-src http://archive.canonical.com/ubuntu jammy partner -deb http://mirrors.aliyun.com/ubuntu/ jammy-security main restricted -deb-src http://mirrors.aliyun.com/ubuntu/ jammy-security main restricted multiverse universe #Added by software-properties -deb http://mirrors.aliyun.com/ubuntu/ jammy-security universe -deb http://mirrors.aliyun.com/ubuntu/ jammy-security multiverse diff --git a/ubuntu/latest/configs/sources-23.list b/ubuntu/latest/configs/sources-23.list new file mode 100644 index 0000000..56fcbcc --- /dev/null +++ b/ubuntu/latest/configs/sources-23.list @@ -0,0 +1,42 @@ +#清华源 +# deb cdrom:[Ubuntu 23.04 LTS lunar Xerus_ - Release amd64 (20160420.1)]/ lunar main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar universe +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates universe +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar multiverse +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates multiverse +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security main restricted +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security universe +deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security multiverse + +#中科大 +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-security main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-security main restricted universe multiverse +deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse +deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse + +#阿里源 +# deb cdrom:[Ubuntu 23.04 LTS lunar Xerus_ - Release amd64 (20160420.1)]/ lunar main restricted +deb-src http://archive.ubuntu.com/ubuntu lunar main restricted #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar main restricted +deb-src http://mirrors.aliyun.com/ubuntu/ lunar main restricted multiverse universe #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar-updates main restricted +deb-src http://mirrors.aliyun.com/ubuntu/ lunar-updates main restricted multiverse universe #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar universe +deb http://mirrors.aliyun.com/ubuntu/ lunar-updates universe +deb http://mirrors.aliyun.com/ubuntu/ lunar multiverse +deb http://mirrors.aliyun.com/ubuntu/ lunar-updates multiverse +deb http://mirrors.aliyun.com/ubuntu/ lunar-backports main restricted universe multiverse +deb-src http://mirrors.aliyun.com/ubuntu/ lunar-backports main restricted universe multiverse #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar-security main restricted +deb-src http://mirrors.aliyun.com/ubuntu/ lunar-security main restricted multiverse universe #Added by software-properties +deb http://mirrors.aliyun.com/ubuntu/ lunar-security universe +deb http://mirrors.aliyun.com/ubuntu/ lunar-security multiverse diff --git a/ubuntu/latest/docker-compose.yml b/ubuntu/latest/docker-compose.yml index 4756c92..00ab14b 100644 --- a/ubuntu/latest/docker-compose.yml +++ b/ubuntu/latest/docker-compose.yml @@ -5,7 +5,7 @@ services: container_name: ubuntu-latest environment: TZ: Asia/Shanghai - image: v8fg/ubuntu:22.04 + image: v8fg/ubuntu:23.04 stdin_open: true tty: true restart: 'no' # no|on-failure[:max-retries]|always|unless-stopped