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.
triplethink/docker-compose.yaml

20 lines
306 B

services:
db:
image: "postgres"
restart: always
environment:
POSTGRES_PASSWORD: postpass
web:
build: .
depends_on:
- db
nginx:
image: "nginx"
ports:
- 8000:80
restart: always
volumes:
- ./nginx:/etc/nginx/conf.d
depends_on:
- web