convert wetty from submodule to normal directory
This commit is contained in:
44
wetty/docker-compose.yml
Normal file
44
wetty/docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user