This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
website/docker-compose.yml
2021-10-24 05:19:39 +02:00

14 lines
260 B
YAML

version: '3.0'
services:
thream-website:
container_name: ${COMPOSE_PROJECT_NAME}
build:
context: './'
dockerfile: './Dockerfile'
ports:
- '${PORT}:${PORT}'
environment:
PORT: ${PORT}
volumes:
- './:/website'