version: '3' services: bnkops.landing.server: image: lscr.io/linuxserver/nginx:latest container_name: bnkops.landing.server environment: - PUID=${USER_ID:-1000} # Uses USER_ID from your .env file, defaults to 1000 - PGID=${GROUP_ID:-1000} # Uses GROUP_ID from your .env file, defaults to 1000 - TZ=Etc/UTC volumes: - ./site:/config/www # Mounts your static site to Nginx's web root ports: - "4007:80" # Exposes Nginx's port 80 to host port 4001 restart: unless-stopped networks: - changemaker networks: changemaker: driver: bridge