You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

27 lines
566 B

version: '2'
services:
web:
restart: always
container_name: pensfond-web
build: .
volumes:
- ./:/opt/app
ports:
- "32770:80"
depends_on:
- db
db:
restart: always
container_name: pensfond-db
image: postgres:latest
expose:
- "5432"
volumes:
- ./data:/var/lib/postgresql/data
environment:
- POSTGRES_USER=pensfond
- POSTGRES_PASSWORD=pensfond
- POSTGRES_DB=pensfond