chat docker app foe everyone based on nodejs
224
docker pull alzoghby/chat-app:tag
where tag is chosen from above
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 applicationversion: '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
Content type
Image
Digest
sha256:6901d1389…
Size
60.1 MB
Last updated
over 1 year ago
docker pull alzoghby/chat-app:2.0