i am trying also this for learing how the work with Docker/Portainer. i have a issue about the string, but i cannot find the issue,
where do i have to look?
version: 2.1
services:
piwigo:
image: linuxserver/piwigo
container_name: piwigo
environment:
- PUID=1000
- PGID=100
- TZ=Europe/Amsterdam
volumes:
- /srv/dev-disk-by-label-Nas/Ron/appdata/piwigo:/config
ports:
- 8125:80
restart: unless-stopped
mariadb:
image: linuxserver/mariadb
container_name: piwidb
environment:
- PUID=1000
- PGID=100
- MYSQL_ROOT_PASSWORD=my password
- TZ=Europe/Amsterdam
- MYSQL_DATABASE=piwigo
- MYSQL_USER=piwigo
- MYSQL_PASSWORD=piwigo
volumes:
- /srv/dev-disk-by-label-Nas/Ron/appdata/piwidb:/config
ports:
- 3306:3306
restart: unless-stopped