photoprism/docker-compose.yml

28 lines
684 B
YAML
Raw Normal View History

2018-02-04 17:34:07 +01:00
version: '3.3'
services:
photoprism:
2018-09-05 18:05:34 +02:00
image: photoprism/photoprism
command: tail -f /dev/null
2018-02-04 17:34:07 +01:00
ports:
- 80:80
2018-02-04 17:34:07 +01:00
volumes:
2018-07-20 10:54:31 +02:00
- .:/go/src/github.com/photoprism/photoprism
- ./configs/photoprism.dev.yml:/etc/photoprism/photoprism.yml
2018-07-18 15:17:56 +02:00
2018-02-04 17:34:07 +01:00
database:
image: mysql:latest
command: mysqld --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci --max-connections=1024
ports:
2018-06-16 14:19:18 +02:00
- 13306:3306
2018-02-04 17:34:07 +01:00
volumes:
- database-data:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: photoprism
MYSQL_USER: photoprism
MYSQL_PASSWORD: photoprism
MYSQL_DATABASE: photoprism
volumes:
database-data:
driver: local