forked from kamba4/sunders
added changes to improve performance of sync
All checks were successful
Build (and tag) Images / build (push) Successful in 1m4s
All checks were successful
Build (and tag) Images / build (push) Successful in 1m4s
This commit is contained in:
parent
8612798373
commit
c768645960
5 changed files with 101 additions and 7 deletions
|
|
@ -8,6 +8,8 @@ services:
|
|||
MYSQL_PASSWORD: camerapassword # ${{secrets.MYSQL_PASSWORD}}
|
||||
ports:
|
||||
- "3306:3306"
|
||||
volumes:
|
||||
- ./mariadb:/var/lib/mysql:Z
|
||||
healthcheck:
|
||||
test: ["CMD", "mariadb-admin", "ping", "-h", "localhost", "-uroot", "-prootpassword"]
|
||||
interval: 10s
|
||||
|
|
@ -17,6 +19,7 @@ services:
|
|||
|
||||
web:
|
||||
image: git.hamburg.ccc.de/ccchh/sunders/web:latest
|
||||
build: ./web/
|
||||
environment:
|
||||
MYSQL_HOST: db
|
||||
MYSQL_DB: camera # ${{secrets.MYSQL_DATABASE}}
|
||||
|
|
@ -34,6 +37,7 @@ services:
|
|||
|
||||
data_handler:
|
||||
image: git.hamburg.ccc.de/ccchh/sunders/data_handler:latest
|
||||
build: ./data_handler/
|
||||
environment:
|
||||
MYSQL_HOST: db
|
||||
MYSQL_DB: camera # ${{secrets.MYSQL_DATABASE}}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue