mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-18 13:09:08 +02:00
* Add envoy proxy * Add frontend, still not working * Open port to frontend * Fix static html page * Fix url in client js code, but CORS is still blocked * Successfully make request from browser to sqkserver through proxy * Expose ports for sqkserver in docker * Remove unused frontend files * Remove duplicate envoy config file
20 lines
802 B
Docker
20 lines
802 B
Docker
# Copyright 2018 Google LLC
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
FROM envoyproxy/envoy:v1.15.0
|
|
|
|
# COPY "docker/envoy/envoy.yaml" /etc/envoy/envoy.yaml
|
|
COPY "frontend/envoy.yaml" /etc/envoy/envoy.yaml
|
|
|
|
CMD /usr/local/bin/envoy -c /etc/envoy/envoy.yaml -l trace --log-path /tmp/envoy_info.log
|