This commit is contained in:
Darren 2023-09-19 20:06:11 +08:00 committed by GitHub
parent 975b670cdc
commit 7493cd1e16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
26 changed files with 2 additions and 128 deletions

View file

@ -1,4 +1,4 @@
APPHUB_VERSION=0.1
APPHUB_VERSION=0.0.1
DEPLOYMENT_VERSION=2.19.0
GIT_VERSION=1.20.4
PROXY_VERSION=2.10.3
PROXY_VERSION=2.10.4

View file

@ -1,3 +0,0 @@
APP_NAME=websoft9-apphub
APP_VERSION=0.0.1
APP_NETWORK=websoft9

View file

@ -1,23 +0,0 @@
version: "3.8"
services:
apphub:
image: websoft9dev/apphub:$APP_VERSION
container_name: $APP_NAME
ports:
- 9001-9999:8080
restart: always
volumes:
- logs:/websoft9/apphub/logs
- media:/websoft9/media
- config:/websoft9/apphub/src/conf
networks:
default:
name: $APP_NETWORK
external: true
volumes:
logs:
media:
config:

View file

@ -1,24 +0,0 @@
# Portainer can not use .env for the reason that then environments at .env may cover other stacks's .env
version: "3.8"
services:
portainer:
container_name: websoft9-deployment
image: websoft9dev/deployment:2.19.0
restart: always
ports:
- 9001-9999:9000
volumes:
- deployment:/data
- /var/run/docker.sock:/var/run/docker.sock
labels:
com.docker.compose.w9_http.port: 9000
networks:
default:
name: websoft9
external: true
volumes:
deployment:

View file

@ -1,11 +0,0 @@
APP_NAME=websoft9-git
APP_VERSION=1.20.4
APP_NETWORK=websoft9
INSTALL_LOCK=true
DISABLE_SSH=true
RUN_MODE=prod
# container inner port
HTTP_PORT=3000
DISABLE_REGISTRATION=false
REQUIRE_SIGNIN_VIEW=false

View file

@ -1,29 +0,0 @@
# image: https://hub.docker.com/r/gitea/gitea
# docs: https://docs.gitea.io/zh-cn/install-with-docker
# gitea admin user create --admin --username websoft9 --random-password --email help@websoft9.com
version: '3.8'
services:
git:
container_name: $APP_NAME
image: websoft9dev/git:$APP_VERSION
restart: always
env_file:
- .env
volumes:
- git:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- 9001-9999:3000
labels:
com.docker.compose.w9_http.port: 3000
networks:
default:
name: ${APP_NETWORK}
external: true
volumes:
git:

View file

@ -1,3 +0,0 @@
APP_NAME=websoft9-proxy
APP_VERSION=2.10.4
APP_NETWORK=websoft9

View file

@ -1,33 +0,0 @@
# image: https://hub.docker.com/r/jc21/nginx-proxy-manager
# docs: https://nginxproxymanager.com/guide/#quick-setup
version: "3.8"
services:
app:
image: websoft9dev/proxy:2.10.4
restart: always
container_name: ${APP_NAME}
build:
context: .
dockerfile: Dockerfile
ports:
- "80:80"
- "443:443"
- "9001-9999:81"
volumes:
- nginx_data:/data
- nginx_letsencrypt:/etc/letsencrypt
labels:
com.docker.compose.w9_http.port: 80
com.docker.compose.w9_https.port: 443
com.docker.compose.w9_console.port: 81
networks:
default:
name: ${APP_NETWORK}
external: true
volumes:
nginx_data:
nginx_letsencrypt: