Compare commits
2 Commits
582b694c4d
...
4f7a805db3
Author | SHA1 | Date |
---|---|---|
Davide Polonio | 4f7a805db3 | |
Davide Polonio | ab384962d7 |
|
@ -3,4 +3,3 @@ config/
|
|||
.env
|
||||
.idea/
|
||||
env-searxng
|
||||
.*.env
|
||||
|
|
|
@ -1,56 +0,0 @@
|
|||
version: "3.9"
|
||||
|
||||
services:
|
||||
app:
|
||||
image: monica:4-apache
|
||||
depends_on:
|
||||
- db
|
||||
env_file:
|
||||
- .monica.env
|
||||
- .env
|
||||
volumes:
|
||||
- data:/var/www/html/storage
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- internal
|
||||
- proxy
|
||||
|
||||
cron:
|
||||
image: monica:4-apache
|
||||
env_file: .monica.env
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- data:/var/www/html/storage
|
||||
command: cron.sh
|
||||
depends_on:
|
||||
- db
|
||||
|
||||
db:
|
||||
image: mysql:8.0
|
||||
env_file:
|
||||
- .mysql.env
|
||||
volumes:
|
||||
- mysql:/var/lib/mysql
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- internal
|
||||
|
||||
volumes:
|
||||
data:
|
||||
driver: local
|
||||
driver_opts:
|
||||
type: none
|
||||
o: bind
|
||||
device: "/srv/docker/diary/data"
|
||||
mysql:
|
||||
driver: local
|
||||
driver_opts:
|
||||
type: none
|
||||
o: bind
|
||||
device: "/srv/docker/diary/mysql"
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
internal:
|
||||
|
Loading…
Reference in New Issue