Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dockerize app #8

Open
stanzinofree opened this issue Aug 5, 2022 · 3 comments
Open

Dockerize app #8

stanzinofree opened this issue Aug 5, 2022 · 3 comments

Comments

@stanzinofree
Copy link
Contributor

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

@stanzinofree
Copy link
Contributor Author

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"

@sanvishal
Copy link
Owner

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!

@clarkhacks
Copy link

@sanvishal Any update on this? I found Wrighter after looking for EXACTLY this and would love to see a dockerized version with some ease.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants