-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
85 lines (78 loc) · 2.49 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# Read the Wiki on Github for configuration instructions
# before running `docker-compose up -d`.
version: "3.8"
services:
redis:
image: redis:alpine
expose:
- "6379"
postgres:
image: postgres:13-alpine
volumes:
- photomanager-db:/var/lib/postgresql/data
environment:
POSTGRES_USER: photomanager
# Supply a password before you deploy
POSTGRES_PASSWORD: ""
expose:
- "5432"
photomanager-daphne:
#image: etnguyen03/photomanager
build:
context: .
dockerfile: Dockerfile
command: daphne
volumes:
- ./photomanager/settings/secret.py:/app/photomanager/settings/secret.py
# Change the source of the mount below to your Nextcloud data folder.
# This is typically /var/www/nextcloud/data
# For instance, change the line below to "- /var/www/nextcloud/data:/data
- photomanager-photos:/data
# Change the source of the mount below to a place to store thumbnails.
# You don't have to, though.
- photomanager-thumbs:/thumbs
depends_on:
- redis
- postgres
ports:
- "8000:8000"
photomanager-celery:
#image: etnguyen03/photomanager
build:
context: .
dockerfile: Dockerfile
command: celery
volumes:
- ./photomanager/settings/secret.py:/app/photomanager/settings/secret.py
# Change the source of the mount below to your Nextcloud data folder.
# This is typically /var/www/nextcloud/data
# For instance, change the line below to "- /var/www/nextcloud/data:/data
- photomanager-photos:/data
# Change the source of the mount below to a place to store thumbnails.
# You don't have to, though.
- photomanager-thumbs:/thumbs
depends_on:
- redis
- postgres
photomanager-celerybeat:
#image: etnguyen03/photomanager
build:
context: .
dockerfile: Dockerfile
command: celerybeat
volumes:
- ./photomanager/settings/secret.py:/app/photomanager/settings/secret.py
# Change the source of the mount below to your Nextcloud data folder.
# This is typically /var/www/nextcloud/data
# For instance, change the line below to "- /var/www/nextcloud/data:/data
- photomanager-photos:/data
# Change the source of the mount below to a place to store thumbnails.
# You don't have to, though.
- photomanager-thumbs:/thumbs
depends_on:
- redis
- postgres
volumes:
photomanager-db:
photomanager-photos:
photomanager-thumbs: