Sign inSign up

clebsantos/spring-chat

By clebsantos

Updated over 2 years ago

Aplicação Spring-Boot com o uso de WebSockets

Image
0

10K+

clebsantos/spring-chat repository overview

Código do Projeto Referencia

services:
  mongodb:
    image: mongo
    container_name: mongo_db
    ports:
      - 27017:27017
    volumes:
      - mongo:/data
    environment:
      - MONGO_INITDB_ROOT_USERNAME=root
      - MONGO_INITDB_ROOT_PASSWORD=teste
  mongo-express:
    image: mongo-express
    container_name: mongo_express
    restart: always
    ports:
      - 8081:8081
    environment:
      - ME_CONFIG_MONGODB_ADMINUSERNAME=root
      - ME_CONFIG_MONGODB_ADMINPASSWORD=teste
      - ME_CONFIG_MONGODB_SERVER=mongodb
  chat:
    image: clebsantos/spring-chat:latest
    container_name: chat-container
    depends_on:
      - mongo_db
    environment:
      - MONGO_USER_NAME=root
      - MONGO_USER_PASSWORD=teste
      - MONGO_HOST=mongo_db
    ports:
      - 8080:8080
    
volumes:
  mongo: {}

Tag summary

Content type

Image

Digest

sha256:729e6f944

Size

370.5 MB

Last updated

over 2 years ago

docker pull clebsantos/spring-chat