Open Darkangeel-hd opened 8 months ago
Created a very basic Dockerfile, it could very sure be improved. Config directory can be mounted to /app/config for ease of use
/app/config
Doesn't require complicated cli lines
To test it: docker build -t tinfoilwebserver:latest . docker run --rm tinfoilwebserver:latest
docker build -t tinfoilwebserver:latest .
docker run --rm tinfoilwebserver:latest
A custom config can be mounted like this: docker run --rm -v /path/to/your/config:/app/config tinfoilwebserver:latest
docker run --rm -v /path/to/your/config:/app/config tinfoilwebserver:latest
Hope this helps If you need any changes to this pls say so and I'll see how to do it.
Created a very basic Dockerfile, it could very sure be improved. Config directory can be mounted to
/app/config
for ease of useDoesn't require complicated cli lines
To test it:
docker build -t tinfoilwebserver:latest .
docker run --rm tinfoilwebserver:latest
A custom config can be mounted like this:
docker run --rm -v /path/to/your/config:/app/config tinfoilwebserver:latest
Hope this helps If you need any changes to this pls say so and I'll see how to do it.