Skip to content

Commit

Permalink
Merge pull request #42 from tillias/dev
Browse files Browse the repository at this point in the history
Initial version of docker-compose.yml #39
  • Loading branch information
tillias authored Oct 11, 2020
2 parents e1401db + d12ffae commit e28c101
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Use postgres/example user/password credentials
version: '3.1'
services:
db:
image: postgres
restart: always
environment:
POSTGRES_PASSWORD: kEt#uR6M
microcatalog:
image: tillias/microcatalog
restart: always
environment:
DB_HOST: db
DB_PORT: 5432
DB_NAME: postgres
DB_PASSWORD: kEt#uR6M
DB_USER: postgres
CSP_IMAGE_SRC: '*'
ports:
- 8080:8080

0 comments on commit e28c101

Please sign in to comment.