Skip to content

Instantly share code, notes, and snippets.

@animato
Last active January 3, 2024 06:01
Show Gist options
  • Save animato/86f1dff3452fa79fb7f9b332fd7c1973 to your computer and use it in GitHub Desktop.
Save animato/86f1dff3452fa79fb7f9b332fd7c1973 to your computer and use it in GitHub Desktop.
docker compose 예제
services:
database:
image: 'postgres'
ports:
- '5432'
environment:
- 'POSTGRES_USER=admin'
- 'POSTGRES_DB=mydatabase'
- 'POSTGRES_PASSWORD=password'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment