tweb icon indicating copy to clipboard operation
tweb copied to clipboard

tweb in a ready docker image

Open vpinigin opened this issue 2 years ago • 4 comments

Is there possible to prepare a docker ready image for dockerhub for others to pull it?

vpinigin avatar Dec 05 '22 16:12 vpinigin

Support~! __

kokojacket avatar Jan 16 '24 01:01 kokojacket

Very useful!

Koradris avatar Feb 27 '24 14:02 Koradris

I want this as well.

TanvirOnGH avatar May 05 '24 10:05 TanvirOnGH

Hello community,

I have create docker services, for develop env and also production build, check my PR #332

I also created an image https://hub.docker.com/r/elgammalx/tweb/tags based on Nginx ready to be deployed.

You can use docker build -f ./.docker/Dockerfile_production -t {dockerhub-username}/{imageName}:{latest} . to build your production ready image.

My build use in docker-compose.yaml file

services:
  tweb.production:
    image: elgammalx/tweb
    ports:
      - 80:80

Moustafa-Elgammal avatar Jun 30 '24 01:06 Moustafa-Elgammal