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

Docker compose? #85

Open
rmelendezz opened this issue Feb 17, 2024 · 3 comments
Open

Docker compose? #85

rmelendezz opened this issue Feb 17, 2024 · 3 comments
Assignees
Labels

Comments

@rmelendezz
Copy link

Hi, would it be possible to install the docker image using Docker Compose?
I am still a bit new to docker and most of my docker images are managed via Portainer

@j6k4m8
Copy link
Owner

j6k4m8 commented Feb 17, 2024

Hi @rmelendezz ! I'm not familiar with portainer, but I imagine something like this should work:

Option 1: After cloning this repo:

version: '3'
services:
  goosepaper:
    build: .
    volumes:
      # replace with your actual config file
      - ./example-config.json:/app/example-config.json

Option 2: Using a downloaded image (may not be the latest code)

version: '3'
services:
  goosepaper:
    image: ghcr.io/j6k4m8/goosepaper:master
    volumes:
      # replace with your actual config file
      - ./example-config.json:/config.json

Happy to help you iterate on this with Portainer!

@j6k4m8 j6k4m8 self-assigned this Feb 17, 2024
@j6k4m8 j6k4m8 added the docker label Feb 17, 2024
@j6k4m8
Copy link
Owner

j6k4m8 commented Feb 17, 2024

Some more pointers to our image:

https://github.com/j6k4m8/goosepaper/pkgs/container/goosepaper

@rmelendezz
Copy link
Author

Thank you so much! I will be trying this out tonight

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

No branches or pull requests

2 participants