A straight forward list app, with some simple organization control
6.7K
Open source shopping / list app.
If you were using this previously, the new updates change the data structure. Please remove your old database if you find odd behavior or errors. The data structures may simply be incompatible. I apologize for any inconvenince as I simplify the app a bit.
Create a new folder to keep the application in:
mkdir -p ~/get_my
Move into that folder, and create a new empty file named "compose.yaml":
cd get_my
nano compose.yaml
Copy the code below, and paste it into the new "compose.yaml" file, then save with CTRL + O, press Enter to confirm, and exit the editor with CTRL + X.
Start the application with:
docker compose up -d
Once started, you can access the web interface in a browser at the IP address of your host system, and port 80 (unless you changed 80 to a different port in the compose.yaml file).
---
services:
get_my:
container_name: get_my
image: get_my
ports:
- "80:3000" # you can change the left side to a less common port number if needed
healthcheck:
test: curl --fail -s http://localhost:3000/ || exit 1
interval: 30s
timeout: 10s
retries: 3
links:
- mongo
depends_on:
- mongo
restart: unless-stopped
mongo:
container_name: get_my-mongo
image: mongo
volumes:
- ./data:/data/db # this will store the application data in the same directory where you have the compose.yaml file.
restart: unless-stopped
MIT Copyright 2022 - Brian McGonagill
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Content type
Image
Digest
sha256:03fe596b1…
Size
249.3 MB
Last updated
about 1 year ago
docker pull bmcgonag/get_my