1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/docker/docker-compose/with-mysql/docker-compose.yml

44 lines
1.3 KiB
YAML
Raw Normal View History

2019-12-24 06:17:05 +08:00
version: '3'
services:
pigallery-db:
container_name: pigallery-db
image: mariadb
volumes:
- db-data:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=putsomethinginherethatyouwouldlikeasthepassword
- MYSQL_USER=pigallery2
- MYSQL_PASSWORD=pigallery2_pass
- MYSQL_DATABASE=pigallery2
nginx:
image: nginx:latest
2019-12-31 03:48:25 +08:00
container_name: nginx
2019-12-24 06:17:05 +08:00
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
- ./nginx/error.log:/etc/nginx/error_log.log
- ./nginx/cache/:/etc/nginx/cache
- /etc/letsencrypt/:/etc/letsencrypt/
ports:
- 80:80
- 443:443
restart: always
pigallery2:
2019-12-31 04:39:05 +08:00
image: bpatrik/pigallery2:latest
command: sh -c 'bin/wait-for pigallery-db:3306 -- --Server-Database-mysql-host=pigallery-db --Server-Database-mysql-username=pigallery2 --Server-Database-mysql-password=pigallery2_pass --Server-Database-mysql-database=pigallery2'
2019-12-24 06:17:05 +08:00
container_name: pigallery2
environment:
- NODE_ENV=production
volumes:
- "./pigallery2/config:/app/data/config" # CHANGE ME
- "db-data:/app/data/db"
- "./pigallery2/images:/app/data/images:ro" # CHANGE ME, ':ro' mean read-only
- "./pigallery2/tmp:/app/data/tmp" # CHANGE ME
2019-12-24 06:17:05 +08:00
expose:
- "80"
restart: always
volumes:
db-data: