-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add major todo to clean up leaked semaphore objects
Add a docker-compose file for speech-synthesis Add a container name for speech-synthesis API
- Loading branch information
1 parent
76af329
commit 5a72ed9
Showing
3 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
services: | ||
speech-synthesis: | ||
image: thevickypedia/speech-synthesis:latest | ||
container_name: speech-synthesis | ||
restart: always | ||
ports: | ||
- "5002:5002" | ||
environment: | ||
HOME: "${HOME}" | ||
working_dir: "${PWD}" | ||
volumes: | ||
- "${HOME}:${HOME}" | ||
- /usr/share/ca-certificates:/usr/share/ca-certificates | ||
- /etc/ssl/certs:/etc/ssl/certs | ||
user: "${UID}:${GID}" | ||
stdin_open: true | ||
tty: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters