alzoghby/chat-app

By alzoghby

Updated over 1 year ago

chat docker app foe everyone based on nodejs

Image
Message queues
0

224

alzoghby/chat-app repository overview

How to Use This Image

pull image

docker pull alzoghby/chat-app:tag

where tag is chosen from above

Run the Container

Use the following command to run this image:

docker run -d --name chat -p 8080:80 alzoghby/chat-app:tag

compose file to add two containers (website - chat-app)

compose.yaml for your application

version: '3.1'

services:
  my-chat-app:
    image: alzoghby/chat-app:1.1
    ports: 
     - 5000:5000
    networks:
      - chat
  website:
    image: alzoghby/website:latest
    ports: 
     - 8080:80
    networks: 
     - website
      

networks: 
   chat:
    driver: bridge
   website:
    driver: bridge 

Tag summary

Content type

Image

Digest

sha256:6901d1389

Size

60.1 MB

Last updated

over 1 year ago

docker pull alzoghby/chat-app:2.0