Skip to content
27 changes: 11 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
/certs/*
/configs/app/*
/configs/server/*
/configs/mgmt/*
/configs/mgmt-client/*
/configs/nginx/*
/configs/redis/*
!/certs/*-demo-*
!/configs/app/*.example.*
!/configs/server/*.example.*
!/configs/mgmt/*.example.*
!/configs/mgmt-client/*.example.*
!/configs/nginx/*.example.*
!/configs/redis/*.example.*
/images
.env
.env
configs/app/config.js
configs/_mgmt_pwchange/
configs/kc/dev.json
configs/mgmt/default.json
configs/server/config.json
certbot
rsa_*.pem
CHANGELOG.md


2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,4 +255,4 @@ edumeet=# \dt
public | knex_migrations_lock | table | edumeet
...

```

6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ services:
env_file: .env
restart: unless-stopped
volumes:
- './configs/server:/usr/src/app/config'
- './configs/server/config.json.template:/usr/src/app/config/config.json.template:ro'
# If running separately and you need certs
# - ./certs:/usr/src/app/certs
container_name: edumeet-room-server
Expand Down Expand Up @@ -136,8 +136,8 @@ services:
env_file: .env
container_name: edumeet-management-server
volumes:
- './configs/mgmt:/usr/src/app/config'
- './configs/_mgmt_pwchange/202310300000000_migrate.ts:/usr/src/app/migrations/202310300000000_migrate.ts'
- './configs/mgmt/config.json.template:/usr/src/app/config/config.json.template:ro'
- './configs/_mgmt_pwchange/202310300000000_migrate.ts:/usr/src/app/migrations/202310300000000_migrate.ts:ro'
build:
args:
- 'GIT_SERVER=${GIT_SERVER}'
Expand Down