mirror of
https://github.com/Tha14/uam-docker.git
synced 2024-11-24 21:33:01 +01:00
feat: make PBKEY a required env variable, update ToDo
This commit is contained in:
parent
8b48dd56c6
commit
2fafbeb29f
@ -28,8 +28,9 @@
|
|||||||
|
|
||||||
## ToDo:
|
## ToDo:
|
||||||
- [x] Add CI tests to make sure the scripts work.
|
- [x] Add CI tests to make sure the scripts work.
|
||||||
|
- [x] Make PBKEY a required variable to avoid running uam without it.
|
||||||
- [ ] Remove unnecessary packages.
|
- [ ] Remove unnecessary packages.
|
||||||
- [ ] Try to speed up mime database update.
|
- [ ] Try to speed up mime database update.
|
||||||
- [ ] Include wondershaper in `apt install` and environment configuration parameters for it.
|
- [ ] Include wondershaper or sch_cake in `apt install` and environment configuration parameters for it.
|
||||||
- [ ] See if it's possible to automatically increment port numbers for the swarm script.
|
- [ ] See if it's possible to automatically increment port numbers for the swarm script.
|
||||||
- [ ] Try to package up-to-date databases to prevent warm-up problems.
|
- [ ] Try to package up-to-date databases to prevent warm-up problems.
|
||||||
|
@ -20,7 +20,7 @@ services:
|
|||||||
- "127.0.0.1:17100:17099"
|
- "127.0.0.1:17100:17099"
|
||||||
- "4160:4160"
|
- "4160:4160"
|
||||||
environment:
|
environment:
|
||||||
- PBKEY=$PBKEY
|
- PBKEY=${PBKEY?err}
|
||||||
- PPORT=4160
|
- PPORT=4160
|
||||||
|
|
||||||
uam_2:
|
uam_2:
|
||||||
@ -42,7 +42,7 @@ services:
|
|||||||
- "127.0.0.1:17101:17099"
|
- "127.0.0.1:17101:17099"
|
||||||
- "4161:4161"
|
- "4161:4161"
|
||||||
environment:
|
environment:
|
||||||
- PBKEY=$PBKEY
|
- PBKEY=${PBKEY?err}
|
||||||
- PPORT=4161
|
- PPORT=4161
|
||||||
|
|
||||||
uam_3:
|
uam_3:
|
||||||
@ -64,5 +64,5 @@ services:
|
|||||||
- "127.0.0.1:17102:17099"
|
- "127.0.0.1:17102:17099"
|
||||||
- "4162:4162"
|
- "4162:4162"
|
||||||
environment:
|
environment:
|
||||||
- PBKEY=$PBKEY
|
- PBKEY=${PBKEY?err}
|
||||||
- PPORT=4162
|
- PPORT=4162
|
||||||
|
@ -20,4 +20,4 @@ services:
|
|||||||
- "127.0.0.1:17099:17099"
|
- "127.0.0.1:17099:17099"
|
||||||
- "4156:4156"
|
- "4156:4156"
|
||||||
environment:
|
environment:
|
||||||
- PBKEY=$PBKEY
|
- PBKEY=${PBKEY?err}
|
||||||
|
Loading…
Reference in New Issue
Block a user