convert wetty from submodule to normal directory

This commit is contained in:
douboer@gmail.com
2026-03-03 16:07:18 +08:00
parent 1db76701a6
commit 0d185d2b3c
131 changed files with 15543 additions and 1 deletions

44
wetty/docker-compose.yml Normal file
View File

@@ -0,0 +1,44 @@
---
version: '3.5'
services:
wetty:
image: wettyoss/wetty
build:
context: .
dockerfile: containers/wetty/Dockerfile
entrypoint: pnpm run docker-compose-entrypoint
tty: true
working_dir: /usr/src/app
ports:
- '3000:3000'
environment:
SSHHOST: 'wetty-ssh'
SSHPORT: 22
NODE_ENV: 'development'
web:
image: nginx
volumes:
- ./conf/nginx.template:/etc/nginx/conf.d/wetty.template
ports:
- '80:80'
environment:
- NGINX_DOMAIN=wetty.com
- NGINX_PORT=80
- WETTY_HOST=wetty
- WETTY_PORT=3000
command: >-
/bin/bash -c "envsubst
'$${NGINX_DOMAIN},$${NGINX_PORT},$${WETTY_HOST},$${WETTY_PORT}' <
/etc/nginx/conf.d/wetty.template > /etc/nginx/conf.d/default.conf && nginx
-g 'daemon off;'"
wetty-ssh:
build:
context: .
dockerfile: containers/ssh/Dockerfile
image: wettyoss/wetty:ssh
networks:
default:
name: wetty