Commit bacc42dd authored by emmapeel's avatar emmapeel 🤖
Browse files

without this escaping, the build breaks

parent db961cbc
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -18,10 +18,10 @@ Now, it's time to run the container. You have two options:
2. If you would rather provide your own ports, run the following command and replace `XXX` with your OR port, `YYY` with your obfs4 port, and `address@example.com` with your email address. Don't forget the semicolon after the environment variables.

   ```
   OR_PORT=XXX PT_PORT=YYY EMAIL=address@example.com; \
   docker run -d \
     -e "OR_PORT=$OR_PORT" -e "PT_PORT=$PT_PORT" -e "EMAIL=$EMAIL" \
     -p "$OR_PORT":"$OR_PORT" -p "$PT_PORT":"$PT_PORT" \
   OR_PORT=XXX PT_PORT=YYY EMAIL=address@example.com; \\
   docker run -d \\
     -e "OR_PORT=$OR_PORT" -e "PT_PORT=$PT_PORT" -e "EMAIL=$EMAIL" \\
     -p "$OR_PORT":"$OR_PORT" -p "$PT_PORT":"$PT_PORT" \\
     phwinter/obfs4-bridge:0.1
   ```