mirror of
https://github.com/linuxserver/docker-code-server.git
synced 2026-02-20 05:13:57 +08:00
* ubuntu fips * Improve Dockerfile formatting and readability - Use consistent 2-space indentation throughout - Remove unnecessary comment blocks - Better organize ARG declarations - Improve line continuation formatting 🤖 Generated with [opencode](https://opencode.ai) Co-Authored-By: opencode <noreply@opencode.ai> * remove extraneous file * remove jenkins things * remove extra files * Add docker-compose configuration for FIPS-compliant code-server - Add docker-compose.yml with build args for VERSION and CODE_RELEASE - Add .env.example with configurable environment variables - Update .gitignore and .dockerignore to exclude .env files - Set CODE_RELEASE default to 4.102.1 for stable builds - Configure image name: gabemendoza1/codecloud-code-server 🤖 Generated with [opencode](https://opencode.ai) Co-Authored-By: opencode <noreply@opencode.ai> * simplify * update image * update image * update image * add netcat-openbsd * netcat * default ids 0 * remove extra files * remove more workflows * upgrade Python to 3.12 🤖 Generated with [opencode](https://opencode.ai) Co-Authored-By: opencode <noreply@opencode.ai> * add buildspec * update buildspec defs * update buildspec defs * ubuntu-fips-2 * fixed buildspec args * FIPS_REPOSITORY_URI * styling * update placeholders * latest * latest * put that thing back where it came from or so help me * only need 1 * simplify Dockerfile * no need ignores * no need ignores * simplify * remove comment * trigger codebuild * jammy --------- Co-authored-by: opencode <noreply@opencode.ai>
25 lines
779 B
YAML
25 lines
779 B
YAML
---
|
|
services:
|
|
docker-code-server:
|
|
image: "${ECR_ACCOUNT_ID:-0123456789012}.dkr.ecr-fips.${ECR_REGION}.amazonaws.com/docker-code-server:${IMAGE_TAG:-latest}"
|
|
pull_policy: build
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
platforms:
|
|
- linux/amd64
|
|
args:
|
|
- ECR_ACCOUNT_ID=${ECR_ACCOUNT_ID:-0123456789012}
|
|
- BASE_IMAGE_TAG=${BASE_IMAGE_TAG:-latest}
|
|
- VERSION=${VERSION:-4.102.1}
|
|
- CODE_RELEASE=${CODE_RELEASE:-4.102.1}
|
|
environment:
|
|
- PUID=${PUID:-0}
|
|
- PGID=${PGID:-0}
|
|
- TZ=${TZ:-America/Chicago}
|
|
- PROXY_DOMAIN=${PROXY_DOMAIN:-}
|
|
- DEFAULT_WORKSPACE=${DEFAULT_WORKSPACE:-/workspace}
|
|
- PWA_APPNAME=${PWA_APPNAME:-code-server}
|
|
ports:
|
|
- "${HOST_PORT:-8443}:8443"
|