Skip to content

Commit 9f32403

Browse files
committed
Doc fixes
1 parent b76364d commit 9f32403

File tree

6 files changed

+34
-8
lines changed

6 files changed

+34
-8
lines changed

.dockerignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
**
2+
!release

README.md

-3
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ Use [sshcode](https://github.com/codercom/sshcode) for a simple setup.
4444
2. Unpack the downloaded file then run the binary.
4545
3. In your browser navigate to `localhost:8080`.
4646

47-
- For self-hosting and other information see [doc/quickstart.md](doc/quickstart.md).
48-
- For hosting on cloud platforms see [doc/deploy.md](doc/deploy.md).
49-
5047
## FAQ
5148

5249
See [./doc/FAQ.md](./doc/FAQ.md).

ci/release-image/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ RUN rm -rf /var/lib/apt/lists/*
3333
EXPOSE 8080
3434
USER coder
3535
WORKDIR /home/coder
36-
ENTRYPOINT ["dumb-init", "fixuid", "-q", "code-server", "--host=0.0.0.0", "--auth=none"]
36+
ENTRYPOINT ["dumb-init", "fixuid", "-q", "code-server", "--host", "0.0.0.0", "."]

ci/release-image/push.sh

+2-4
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,10 @@ main() {
1212
fi
1313

1414
imageTag="codercom/code-server:$VERSION"
15-
latest="codercom/code-server:latest"
16-
if [[ $TRAVIS_CPU_ARCH == "arm64" ]]; then
15+
if [[ ${TRAVIS_CPU_ARCH:-} == "arm64" ]]; then
1716
imageTag+="-arm64"
18-
latest="codercom/code-server:arm64"
1917
fi
20-
docker build -t "$imageTag" -t "$latest" -f ./ci/release-image/Dockerfile .
18+
docker build -t "$imageTag" -f ./ci/release-image/Dockerfile .
2119
docker push codercom/code-server
2220
}
2321

doc/FAQ.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# FAQ
22

3+
## Questions?
4+
5+
Please file all questions and support requests at https://www.reddit.com/r/codeserver/
6+
The issue tracker is only for bugs.
7+
38
## What's the deal with extensions?
49

510
Unfortunately, the Microsoft VS Code Marketplace license prohibits use with any non Microsoft

doc/assets/droplet.svg

+24
Loading

0 commit comments

Comments
 (0)