Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
version: '2'
services:
postgres:
image: postgres
environment:
POSTGRES_USER: mtsar
POSTGRES_PASSWORD: mtsar
volumes:
- './postgres:/var/lib/postgresql/data'
expose:
- '5432'
app:
build: .
volumes:
- './log:/mtsar/log'
ports:
- '8080:8080'
- '8081:8081'
links:
- postgres