Unraid/DockerHub #226
charlie-kilo13
started this conversation in
Ideas
Replies: 2 comments
-
Not familiar with Unraid so I don't know if this will solve your comment, but I've been pulling Docker Hub for a while now. https://hub.docker.com/r/pepperlabs/peppermint |
Beta Was this translation helpful? Give feedback.
0 replies
-
I know this discussion is old but i stumbled upon this because i wanted to have this for my unraid server too! I made it work with the "compose manager" plugin and following compose file: (Adjust mounts, ips and passwords as you need) services:
peppermint_postgres:
container_name: peppermint_postgres
image: postgres:latest
restart: always
volumes:
- /mnt/user/appdata/peppermint_postgres:/var/lib/postgresql/data
environment:
POSTGRES_USER: peppermint
POSTGRES_PASSWORD: 1234
POSTGRES_DB: peppermint
networks:
- br0
peppermint:
container_name: peppermint
image: pepperlabs/peppermint:latest
ports:
- 3000:3000
- 5003:5003
restart: always
depends_on:
- peppermint_postgres
environment:
DB_USERNAME: "peppermint"
DB_PASSWORD: "1234"
DB_HOST: "peppermint_postgres"
SECRET: 'peppermint4life'
networks:
br0:
ipv4_address: 192.168.1.5
networks:
br0:
name: br0
external: true |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Would love to run this on my Unraid Server. This would be fantastic! Needs to be added to community apps or via dockerhub...
Beta Was this translation helpful? Give feedback.
All reactions