Skip to content

Commit

Permalink
Add Docker compose (initial)
Browse files Browse the repository at this point in the history
  • Loading branch information
sneridagh committed Nov 30, 2024
1 parent 44a9183 commit 1d89a33
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
version: '3.8'
name: nickcms

services:

db:
image: postgres:14
environment:
POSTGRES_USER: nick
POSTGRES_PASSWORD: nick
POSTGRES_DB: nick
volumes:
- vol-site-data:/var/lib/postgresql/data
ports:
- 5432:5432

volumes:
vol-site-data: {}

0 comments on commit 1d89a33

Please sign in to comment.