mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 23:40:13 +01:00
Merge pull request #2672 from Scherdel/master
Devcontainer: Removed MAIL-Vars, Add PATH with meteor to Envionment
This commit is contained in:
commit
ebd32af5c1
4 changed files with 7 additions and 7 deletions
|
|
@ -6,7 +6,7 @@ ENV DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
ENV \
|
ENV \
|
||||||
DEBUG=false \
|
DEBUG=false \
|
||||||
NODE_VERSION=8.16.0 \
|
NODE_VERSION=8.16.1 \
|
||||||
METEOR_RELEASE=1.8.1 \
|
METEOR_RELEASE=1.8.1 \
|
||||||
USE_EDGE=false \
|
USE_EDGE=false \
|
||||||
METEOR_EDGE=1.5-beta.17 \
|
METEOR_EDGE=1.5-beta.17 \
|
||||||
|
|
@ -144,11 +144,13 @@ RUN set -o xtrace \
|
||||||
&& printf "\n[-] Installing Meteor $METEOR_VERSION...\n\n" \
|
&& printf "\n[-] Installing Meteor $METEOR_VERSION...\n\n" \
|
||||||
&& sh /home/wekan/install-meteor.sh
|
&& sh /home/wekan/install-meteor.sh
|
||||||
|
|
||||||
ENV PATH=$PATH:$HOME/.meteor/
|
ENV PATH=$PATH:/home/wekan/.meteor/
|
||||||
|
|
||||||
# Copy source dir
|
# Copy source dir
|
||||||
USER root
|
USER root
|
||||||
|
|
||||||
|
RUN echo "export PATH=$PATH" >> /etc/environment
|
||||||
|
|
||||||
RUN set -o xtrace \
|
RUN set -o xtrace \
|
||||||
&& mkdir /home/wekan/app
|
&& mkdir /home/wekan/app
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
// See https://aka.ms/vscode-remote/devcontainer.json for format details.
|
// See https://aka.ms/vscode-remote/devcontainer.json for format details.
|
||||||
{
|
{
|
||||||
"dockerComposeFile": "docker-compose.yml",
|
"dockerComposeFile": ["docker-compose.yml", "docker-compose.extend.yml"],
|
||||||
"service": "wekan-dev",
|
"service": "wekan-dev",
|
||||||
"workspaceFolder": "/home/wekan/app",
|
"workspaceFolder": "/home/wekan/app",
|
||||||
"extensions": [
|
"extensions": [
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ version: '3.7'
|
||||||
services:
|
services:
|
||||||
|
|
||||||
wekandb-dev:
|
wekandb-dev:
|
||||||
image: mongo:4.0.11
|
image: mongo:4.0.12
|
||||||
container_name: wekan-dev-db
|
container_name: wekan-dev-db
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
command: mongod --smallfiles --oplogSize 128
|
command: mongod --smallfiles --oplogSize 128
|
||||||
|
|
@ -29,9 +29,6 @@ services:
|
||||||
environment:
|
environment:
|
||||||
- MONGO_URL=mongodb://wekandb-dev:27017/wekan
|
- MONGO_URL=mongodb://wekandb-dev:27017/wekan
|
||||||
- ROOT_URL=http://localhost:3000
|
- ROOT_URL=http://localhost:3000
|
||||||
#- MAIL_URL=smtp://user:pass@mailserver.example.com:25/
|
|
||||||
- MAIL_URL=smtp://<mail_url>:25/?ignoreTLS=true&tls={rejectUnauthorized:false}
|
|
||||||
- MAIL_FROM=Wekan Notifications <noreply.wekan@mydomain.com>
|
|
||||||
- WITH_API=true
|
- WITH_API=true
|
||||||
- RICHER_CARD_COMMENT_EDITOR=true
|
- RICHER_CARD_COMMENT_EDITOR=true
|
||||||
- BROWSER_POLICY_ENABLED=true
|
- BROWSER_POLICY_ENABLED=true
|
||||||
|
|
|
||||||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -31,3 +31,4 @@ ehthumbs.db
|
||||||
.eslintcache
|
.eslintcache
|
||||||
.meteor/local
|
.meteor/local
|
||||||
.meteor-1.6-snap/.meteor/local
|
.meteor-1.6-snap/.meteor/local
|
||||||
|
.devcontainer/docker-compose.extend.yml
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue