Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@pferreirafabricio
Created April 14, 2021 01:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pferreirafabricio/00e32089f36fdb057564b830975af3ce to your computer and use it in GitHub Desktop.
Save pferreirafabricio/00e32089f36fdb057564b830975af3ce to your computer and use it in GitHub Desktop.
🥳 My first docker compose
version: "3.6"
services:
db:
image: postgres
environment:
POSTGRES_PASSWORD: mysecretpassword
wordpress:
image: wordpress
depends_on:
- db
ports:
- 8085:80
links:
- db
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment