Lorem Ipsum is a website where you can upload meme and share it for the whole internet to see, it has enough feature. Like upload image, react, comment, and delete your post. Its pretty much. I think i can improve it, But here it is.
- View post that user share
- React and Comment to that post
- Account authentication
- Uploading image and delete it
- First create this compose.yaml
services:
web:
image: muhhae/lorem-ipsum
ports:
- "8080:8080"
environment:
- MONGO_URI=mongodb://mongodb:27017/data
- PORT=8080
- JWT_SECRET=${JWT_SECRET}
depends_on:
- mongodb
mongodb:
image: mongo
ports:
- '27017:27017'
volumes:
- mongodb-data:/data/db
volumes:
mongodb-data:
- Run
docker compose up -d
# reload service on change or just update lorem ipsum image
docker compose up -d --pull=muhhae/lorem-ipsum