photoprism/docker-compose.yml

25 lines
641 B
YAML
Raw Normal View History

2018-02-04 17:34:07 +01:00
version: '3.3'
services:
photoprism:
build: .
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
2018-09-17 18:08:46 +02:00
- ./configs/photoprism.dev.yml:/etc/photoprism/photoprism.yml:ro
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:
2018-09-17 18:08:46 +02:00
- /var/lib/mysql
2018-02-04 17:34:07 +01:00
environment:
MYSQL_ROOT_PASSWORD: photoprism
MYSQL_USER: photoprism
MYSQL_PASSWORD: photoprism
2018-09-17 18:08:46 +02:00
MYSQL_DATABASE: photoprism