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.
26 lines
612 B
26 lines
612 B
version: '3'
|
|
services:
|
|
#######################################
|
|
# TapIt Application
|
|
#######################################
|
|
app:
|
|
build:
|
|
context: ./tapit-build/
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "127.0.0.1:8000:8000"
|
|
restart: always
|
|
|
|
#######################################
|
|
# Postgres server
|
|
#######################################
|
|
postgres-tapit:
|
|
image: postgres
|
|
restart: always
|
|
volumes:
|
|
- ./postgres-data:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_USER=tapit
|
|
- POSTGRES_PASSWORD=secret-tapit-password
|
|
- POSTGRES_DB=tapit
|
|
|