Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implementar talk #263

Open
luarar opened this issue Dec 19, 2018 · 1 comment
Open

Implementar talk #263

luarar opened this issue Dec 19, 2018 · 1 comment

Comments

@luarar
Copy link
Contributor

luarar commented Dec 19, 2018

Migración:
-usuarios
-comentarios
-assets

@luarar luarar added this to the Sprint Enero milestone Dec 19, 2018
@guillecro
Copy link
Collaborator

Fijate si para instalar talk te sirve agregar esto al docker-compose

version: '3'

services:
  app:
    container_name: consultapublica
    build: .
    command: ["./node_modules/.bin/gulp", "bws"]
    environment:
      - NODE_ENV=development
      - DEBUG=democracyos*
      - MONGO_URL=mongodb://mongo/development
    links:
      - mongo
    ports:
      - 3000:3000
    volumes:
      - ./ext/lib:/usr/src/ext/lib
      - ./public:/usr/src/public
    tty: true

  mongo:
    container_name: consultapublica-mongo
    image: mongo:3.2
    ports:
      - 27017:27017
    volumes:
      - ./tmp/db:/data/db

  talk:
    image: coralproject/talk:4.5
    restart: always
    ports:
      - "3000:3000"
    depends_on:
      - mongo
      - redis
    environment:
      - NODE_ENV=development # remove this line in production
      - TALK_MONGO_URL=mongodb://mongo/development # Need to review this!!
      - TALK_REDIS_URL=redis://redis
      - TALK_ROOT_URL=http://127.0.0.1:3000
      - TALK_PORT=3000
      - TALK_JWT_SECRET=password
  redis:
    image: redis:latest
    restart: always
    volumes:
      - redis:/data/redis

Lo agregado seria a partir de talk

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants