mafen / playit-docker

12 stars 0 forks source link

Add suppport to retain agent config between container redeployment with volumes #1

Closed vegiemane closed 8 months ago

vegiemane commented 8 months ago

Changed the docker compose to just add a volume and was able to keep the config between deletion of the container and redeployment.


version: "3"

services:
  playit:
    container_name: playit
    image: ghcr.io/mafen/playit-docker:latest
    volumes:
      - ./config:/etc/playit
    restart: unless-stopped
mafen commented 8 months ago

Thanks for the suggestion, it is added in 03015c7