Skip to content

Commit

Permalink
Update docker compose example
Browse files Browse the repository at this point in the history
  • Loading branch information
demophoon committed Dec 12, 2024
1 parent 2ecf709 commit f1a586e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
services:
shrls:
# Uncomment to build from source
#build:
# context: .
image: ghcr.io/demophoon/shrls:latest
environment:
SHRLS_DEFAULT_REDIRECT: "https://www.brittg.com/"
SHRLS_UPLOAD_DIRECTORY: "/uploads"
SHRLS_USERNAME: "shrls"
SHRLS_PASSWORD: "example"
SHRLS_USERNAME: "admin"
SHRLS_PASSWORD: "changeMe!"
# Uncomment to use mongodb backend
# SHRLS_MONGO_CONNECTION_STRING: "mongodb://mongo:password@mongodb:27017"
ports:
- "3000:3000"
- "5000:3000"
volumes:
- "${PWD}/config:/config"
- "${PWD}/uploads:/uploads"
Expand Down

0 comments on commit f1a586e

Please sign in to comment.