wrighter
wrighter copied to clipboard
Dockerize app
Hi Vishal, I read about your app and I tried it, I modified some part to run in a docker, are you interested on those changes? It's some dockerfiles and change the ip in entry point of apps to use bind: 0.0.0.0 rather than localhost.
If you want I can oper a PR to merge them after i publish them.
Regards
this is an example Alex/Users/alex/Documents/progetti/lab/wrighter/docker-compose.yaml
sorry the file is this:
version: '3.9'
services: mariadb: image: mariadb:10.7 container_name: mariadb ports: - "3306:3306" volumes: - ./mariadb:/var/lib/mysql environment: - MYSQL_ROOT_PASSWORD=S3cret - MYSQL_PASSWORD=An0thrS3crt - MYSQL_USER=writer - MYSQL_DATABASE=writer_db server: build: ./wrighter-server/ ports: - "8080:8080" depends_on: - "mariadb" client: build: ./wrighter-client/ ports: - "3000:3000" depends_on: - "server"
Thanks so much for your interest 😄 wrighter is made for a hackathon, for which the results haven't come out yet. So, I'm skeptical about merging this. Although I suggest creating a PR, I will only be able to merge it after the results come out.
thanks again!
@sanvishal Any update on this? I found Wrighter after looking for EXACTLY this and would love to see a dockerized version with some ease.