diff options
| -rw-r--r-- | docker/code-server/Dockerfile (renamed from docker/arch-code-server/Dockerfile) | 2 | ||||
| -rw-r--r-- | template/docker-compose.yaml.template | 4 | 
2 files changed, 3 insertions, 3 deletions
diff --git a/docker/arch-code-server/Dockerfile b/docker/code-server/Dockerfile index ff1ce98..d7984d6 100644 --- a/docker/arch-code-server/Dockerfile +++ b/docker/code-server/Dockerfile @@ -5,4 +5,4 @@ ENV CODE_SERVER_CONFIG="/data/code-server-config.yaml"  WORKDIR /root  EXPOSE 8080  VOLUME [ "/data" ] -ENTRYPOINT [ "code-server", "--bind-addr", "0.0.0.0:8080" ] +ENTRYPOINT [ "/usr/bin/code-server", "--bind-addr", "0.0.0.0:8080" ] diff --git a/template/docker-compose.yaml.template b/template/docker-compose.yaml.template index a9d5a2b..8f7c621 100644 --- a/template/docker-compose.yaml.template +++ b/template/docker-compose.yaml.template @@ -15,11 +15,11 @@ services:    code-server:      pull_policy: build      build: -      context: ./docker/arch-code-server +      context: ./docker/code-server        dockerfile: Dockerfile        pull: true        tags: -        - "crupest/arch-code-server:latest" +        - "crupest/code-server:latest"      container_name: code-server      restart: on-failure:3      volumes:  | 
