diff --git a/photopea/docker-compose.yml b/photopea/docker-compose.yml new file mode 100644 index 0000000..f76e136 --- /dev/null +++ b/photopea/docker-compose.yml @@ -0,0 +1,17 @@ +services: + photopea: + image: shtse8/photopea:latest + container_name: photopea + healthcheck: + test: ["CMD-SHELL", "nc -z 127.0.0.1 8887 || exit 1"] + interval: 10s + timeout: 5s + retries: 3 + start_period: 90s + ports: + - 8487:8887 + environment: + PUID: 1026 + PGID: 100 + TZ: Europe/Berlin + restart: on-failure:5 \ No newline at end of file