Initial commit

This commit is contained in:
2023-06-14 12:34:50 +02:00
parent edf2f346b7
commit ac10b43a8a
18 changed files with 466 additions and 0 deletions

20
dashy/docker-compose.yml Normal file
View File

@ -0,0 +1,20 @@
version: "3.8"
services:
dashy:
container_name: Dashy
image: lissy93/dashy
# Pass in your config file below, by specifying the path on your host machine
volumes:
- /srv/dev-disk-by-uuid-cda15581-b397-4ab7-8698-acea81fc1e9c/dashy/config/config.yml:/app/public/conf.yml
# Set port that web service will be served on. Keep container port as 80
ports:
- 4000:80
# Set any environmental variables
environment:
- NODE_ENV=production
# Specify your user ID and group ID. You can find this by running `id -u` and `id -g`
- UID=1002
- GID=100
# Specify restart policy
restart: unless-stopped