14 lines
598 B
YAML
14 lines
598 B
YAML
# Docker Compose for service wishlist created at Tue Nov 4 10:55:18 PM EET 2025
|
|
services:
|
|
wishlist:
|
|
container_name: wishlist
|
|
image: ghcr.io/cmintey/wishlist:latest
|
|
ports:
|
|
- ${SVC_PORT_1}:3280
|
|
volumes:
|
|
- ${WISHLIST_DATA_REMOTE}:/usr/src/app/uploads # This is where user image uploads will be stored
|
|
- ${WISHLIST_DATA_LOCAL}:/usr/src/app/data # This is where the sqlite database will be stored
|
|
environment:
|
|
ORIGIN: ${HOSTNAME} # The URL your users will be connecting to
|
|
TOKEN_TIME: 72 # hours until signup and password reset tokens expire
|