Add Dockerfile and docker-compose.yml

This commit is contained in:
David Birks 2020-08-19 00:23:04 -04:00
parent 2d69b3087f
commit d15d23539e
No known key found for this signature in database
GPG key ID: BB999F83D9A19A36
3 changed files with 46 additions and 1 deletions

25
docker-compose.yml Normal file
View file

@ -0,0 +1,25 @@
version: '3.8'
services:
umami:
build: .
ports:
- "3000:3000"
environment:
DATABASE_URL: postgresql://umami:umami@postgres:5432/umami
HASH_SALT: replace-me-with-a-random-string
postgres:
image: postgres:alpine
ports:
- "5432:5432"
environment:
POSTGRES_USER: umami
POSTGRES_PASSWORD: umami
volumes:
- type: bind
source: ./sql/schema.postgresql.sql
target: /docker-entrypoint-initdb.d/schema.postgresql.sql
- type: volume
source: postgres-data
target: /var/lib/postgresql/data
volumes:
postgres-data: