Skip to content

Instantly share code, notes, and snippets.

View yunylz's full-sized avatar
🙃
dying inside

yunyl yunylz

🙃
dying inside
View GitHub Profile
@stevewithington
stevewithington / docker-compose-drupal-postgres.yml
Last active April 21, 2025 17:47
Drupal with Postgres Docker Compose File
version: '2'
# Note: use the database service name `db` in the Host IP Address field ...
# Or, `docker container inspect {postgrescontainerid}` to obtain the IP Address needed for completing the Drupal setup screen.
services:
# Postgres
db:
image: postgres:9.6.5-alpine
restart: always