Go to file
Stefan Forstenlechner b6ddbfb92b Decode URI 2022-04-10 17:56:46 +02:00
picture-gallery-client Use .env file dynamically 2022-04-10 13:09:11 +02:00
picture-gallery-server Decode URI 2022-04-10 17:56:46 +02:00
public some more pictures 2022-04-09 21:00:17 +02:00
.dockerignore initial commit 2022-04-09 13:30:58 +02:00
.gitignore initial commit 2022-04-09 13:30:58 +02:00
Dockerfile Use .env file dynamically 2022-04-10 13:09:11 +02:00
README.md Minimum content for README 2022-04-10 13:36:51 +02:00

README.md

Simple Picture Gallery

Getting Started

Docker

docker build . -t simple-picture-gallery
docker run -p 3005:3001 -v /mnt/data/pictures:/usr/src/app/public --name my-picture-gallery simple-picture-gallery

Customization

Create an environment file .env:

REACT_APP_TITLE=My Gallery
REACT_APP_APPBAR_COLOR=#F8AB2D

And run docker with --env-file .env

docker run -p 3005:3001 -v //c/DATA/temp/bla:/usr/src/app/public --env-file .env --name my-picture-gallery simple-picture-gallery