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