Skip to content
Navigation Menu
Toggle navigation
Sign in
Appearance settings
Platform
GitHub Copilot
Write better code with AI
GitHub Spark
New
Build and deploy intelligent apps
GitHub Models
New
Manage and compare prompts
GitHub Advanced Security
Find and fix vulnerabilities
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Discussions
Collaborate outside of code
Code Search
Find more, search less
Explore
Why GitHub
All features
Documentation
GitHub Skills
Blog
Solutions
By company size
Enterprises
Small and medium teams
Startups
Nonprofits
By use case
DevSecOps
DevOps
CI/CD
View all use cases
By industry
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
Topics
AI
DevOps
Security
Software Development
View all
Explore
Learning Pathways
Events & Webinars
Ebooks & Whitepapers
Customer Stories
Partners
Executive Insights
Open Source
GitHub Sponsors
Fund open source developers
The ReadME Project
GitHub community articles
Repositories
Topics
Trending
Collections
Enterprise
Enterprise platform
AI-powered developer platform
Available add-ons
GitHub Advanced Security
Enterprise-grade security features
Copilot for business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search or jump to...
Search code, repositories, users, issues, pull requests...
Provide feedback
We read every piece of feedback, and take your input very seriously.
Include my email address so I can be contacted
Saved searches
Use saved searches to filter your results more quickly
Sign in
Sign up
Appearance settings
Resetting focus
{{ message }}
MMK21Hub
/
hide-and-squeak
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
3
Code
Issues
Pull requests
Actions
Projects
Security
Insights
Additional navigation options
Collapse file tree
Files
mainmain
Search this repository
.github
.vscode
backend
deployment
downloads
compose.yaml
example.env
init-db
entrypoint.sh
frontend
screenshots
.dockerignore
.gitignore
.yarnrc.yml
Dockerfile
README.md
compose.yaml
package.json
upload-new-docker-image.sh
yarn.lock
Breadcrumbs
hide-and-squeak
/
deployment
/
downloads
/
compose.yaml
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
MMK21Hub
restart: unless-stopped
last week
Aug 20, 2025
79d030c
· ·
last week
Aug 20, 2025
History
History
Open commit details
31 lines (30 loc) · 1.01 KB
Breadcrumbs
hide-and-squeak
/
deployment
/
downloads
/
compose.yaml
Top
File metadata and controls
Code
Blame
31 lines (30 loc) · 1.01 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
# A Docker Compose file that can be used to deploy Hide and Squeak in a production. Can be adjusted to suit the deployment's needs. services: server: image: mmk21/hide-and-squeak-server:latest restart: unless-stopped ports: - 3010:3010 environment: - "DATABASE_URL=postgresql://${DB_USERNAME}:${DB_PASSWORD}@db:5432/${DB_DATABASE_NAME}" depends_on: db: condition: service_healthy restart: true db: # We use imresamu's fork of the image because it has multiplatform support (for ARMv8) # Feel free to switch to postgis/postgis if you'd prefer image: imresamu/postgis:17-3.5 restart: unless-stopped environment: POSTGRES_PASSWORD: ${DB_PASSWORD} POSTGRES_USER: ${DB_USERNAME} POSTGRES_DB: ${DB_DATABASE_NAME} volumes: - ./database:/var/lib/postgresql/data healthcheck: test: ["CMD-SHELL", "pg_isready -U ${DB_USERNAME} -d ${DB_DATABASE_NAME}"] interval: 5s retries: 5 start_period: 10s timeout: 5speriod: 10s timeout: 5s
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#
A Docker Compose file that can be used to deploy Hide and Squeak in a production. Can be adjusted to suit the deployment's needs.
services
:
server
:
image
:
mmk21/hide-and-squeak-server:latest
restart
:
unless-stopped
ports
:
-
3010:3010
environment
:
-
"
DATABASE_URL=postgresql://${DB_USERNAME}:${DB_PASSWORD}@db:5432/${DB_DATABASE_NAME}
"
depends_on
:
db
:
condition
:
service_healthy
restart
:
true
db
:
#
We use imresamu's fork of the image because it has multiplatform support (for ARMv8)
#
Feel free to switch to postgis/postgis if you'd prefer
image
:
imresamu/postgis:17-3.5
restart
:
unless-stopped
environment
:
POSTGRES_PASSWORD
:
${DB_PASSWORD}
POSTGRES_USER
:
${DB_USERNAME}
POSTGRES_DB
:
${DB_DATABASE_NAME}
volumes
:
-
./database:/var/lib/postgresql/data
healthcheck
:
test
:
["CMD-SHELL", "pg_isready -U ${DB_USERNAME} -d ${DB_DATABASE_NAME}"]
interval
:
5s
retries
:
5
start_period
:
10s
timeout
:
5s
While the code is focused, press Alt+F1 for a menu of operations.