Pritunl-Fake-API/www/docker-compose_simple-single.yml
Amir Moradi ba6bd38431
Runs this API on port 80
# Runs on docker single daemon (no swarm)
# Make sure the mount volumes match correctly
# This needs the commited nginx.conf (or your own adapted version)
2022-11-18 11:05:12 +01:00

15 lines
359 B
YAML

# Runs this API on port 80
# Runs on docker single daemon (no swarm)
# Make sure the mount volumes match correctly
# This needs the commited nginx.conf (or your own adapted version)
version: '3.7'
services:
web:
image: trafex/php-nginx
ports:
- "80:8080"
volumes:
- ".:/var/www/html:ro"
- "./nginx.conf:/etc/nginx/nginx.conf"