Skip to content

Latest commit

 

History

History
40 lines (34 loc) · 711 Bytes

piwigo.md

File metadata and controls

40 lines (34 loc) · 711 Bytes

Piwigo

  • Has mobile app
  • Some video support
  • Quite complex to manage, but also pretty powerful

docker-compose.yml

---
version: "2"
services:
  piwigo:
    image: linuxserver/piwigo
    container_name: piwigo
    restart: unless-stopped
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Dublin
    depends_on:
      - db
    ports:
      - 3060:80
    volumes:
      - ./config:/config

  db:
	image: mariadb
    restart: unless-stopped
    environment:
        - MYSQL_ROOT_PASSWORD=piwigo
        - MYSQL_DATABASE=piwigo