1
Fork 0
theorangeone.net-legacy/docker-compose.yml
Jake Howard 781354b797
Remove unnecessary env file additions
Because the env file is passed in directly, the build scripts will deal with exporting it
2020-09-12 14:53:22 +01:00

11 lines
197 B
YAML

version: "2.3"
services:
website:
build:
context: .
volumes:
- "./public:/usr/share/nginx/html:ro"
- "./nginx.conf:/etc/nginx/nginx.conf:ro"
ports:
- "80:80"