Created
November 28, 2022 15:27
-
-
Save blacktrub/8df6f7951d7de34804a4bb1cf7d3c2d6 to your computer and use it in GitHub Desktop.
Hitchhiker
This file contains hidden or 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
| version: '2' | |
| services: | |
| hitchhiker: | |
| image: brookshi/hitchhiker:v0.14 | |
| container_name: hitchhiker | |
| environment: | |
| - HITCHHIKER_DB_HOST=localhost | |
| - HITCHHIKER_APP_HOST=http://localhost:9999/ | |
| ports: | |
| - "9999:9999" | |
| - "11010:11010" | |
| volumes: | |
| - /my/hitchhiker/data:/usr/src/Hitchhiker/build/global_data/project | |
| - /my/hitchhiker/backup:/usr/src/Hitchhiker/build/backup | |
| - /my/hitchhiker/logs:/usr/src/Hitchhiker/build/logs | |
| network_mode: host | |
| hitchhiker-mysql: | |
| image: mysql:5.7 | |
| container_name: hitchhiker-mysql | |
| environment: | |
| - MYSQL_ROOT_PASSWORD=hitchhiker888 | |
| - MYSQL_DATABASE=hitchhiker-prod | |
| volumes: | |
| - ./hitchhiker-mysql.cnf:/etc/mysql/conf.d/hitchhiker.cnf | |
| - /my/hitchhiker/sqldata:/var/lib/mysql | |
| network_mode: host |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment